generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.41 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "renoki-co/laravel-useful-casts",
"description": "Laravel Useful Casts is a simple package for Laravel 7.0+ that comes with already-tested and already-written, useful casts for Eloquent models.",
"keywords": [
"laravel",
"php",
"casts",
"cast"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-useful-casts",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"illuminate/contracts": "^9.35|^10.5",
"illuminate/database": "^9.35|^10.5",
"illuminate/support": "^9.35|^10.5"
},
"autoload": {
"psr-4": {
"RenokiCo\\UsefulCasts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\UsefulCasts\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"laravel/legacy-factories": "^1.3",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.23|^8.3",
"phpunit/phpunit": "^9.5.21"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"RenokiCo\\UsefulCasts\\UsefulCastsServiceProvider"
]
}
}
}