-
Notifications
You must be signed in to change notification settings - Fork 424
/
composer.json
44 lines (44 loc) · 1.03 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
{
"name": "appzcoder/crud-generator",
"license": "MIT",
"description": "Laravel CRUD Generator",
"keywords": [
"laravel",
"crud",
"crud generator",
"laravel crud generator",
"api generator"
],
"authors": [
{
"name": "Sohel Amin",
"email": "sohelamincse@gmail.com",
"homepage": "http://www.appzcoder.com"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"laravel/breeze": "^1.10|^2.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.7|^8.0|^9.0",
"orchestra/testbench": "^3.3|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Appzcoder\\CrudGenerator\\": "src/"
},
"classmap": [
"tests"
]
},
"extra": {
"laravel": {
"providers": [
"Appzcoder\\CrudGenerator\\CrudGeneratorServiceProvider"
]
}
}
}