-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 943 Bytes
/
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
{
"name": "coolhax/bootstrap-laravel-crud-generator",
"description": "Laravel bootstrap 5 Crud Generator based on https://github.com/awais-vteams/laravel-crud-generator",
"license": "MIT",
"authors": [
{
"name": "Rohit Kumar",
"email": "coolelearning.php@gmail.com"
}
],
"keywords": [
"laravel",
"bootstrap",
"crud",
"crud generator",
"laravel crud generator",
"laravel package"
],
"require": {
"laravel/framework": "^9.0|^10.0",
"laravelcollective/html": "^6.0"
},
"autoload": {
"psr-4": {
"Coolhax\\CoolhaxCrudGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Coolhax\\CoolhaxCrudGenerator\\CoolhaxCrudServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}