-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.05 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
{
"name":"shaburov/laravel-crud-rest-api",
"description":"Crud Rest Api package for creating other crud controllers.",
"keywords":[
"crud",
"api",
"rest-api",
"laravel"
],
"license":"MIT",
"authors":[
{
"name":"Ivan Shaburov",
"email":"[email protected]"
}
],
"minimum-stability":"stable",
"require":{
"php":"^8.0"
},
"autoload":{
"psr-4":{
"CrudRestApi\\":"src/CrudRestApi"
}
},
"autoload-dev":{
"psr-4":{
"Tests\\":"tests/"
}
},
"scripts":{
"test":"phpunit"
},
"config":{
"process-timeout":0,
"sort-packages":true
},
"extra":{
"laravel":{
"providers":[
"CrudRestApi\\CrudServiceProvider"
]
}
},
"require-dev":{
"laravel/framework": "^9.0",
"nunomaduro/collision": "^6.2",
"orchestra/testbench": "^7.15.0",
"phpunit/phpunit": "^9.3"
}
}