-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
45 lines (42 loc) · 1.26 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
{
"name": "hestabit/modulemaker",
"description": "Module Maker is a package which is helpful to create modules with GUI, you can create a module with or without Controllers and View as per your requirement.",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Hestabit",
"email": "[email protected]",
"homepage": "https://github.com/Hestabit"
},
{
"name": "Aman Kumar",
"email": "[email protected]",
"homepage": "https://github.com/amanhestabit",
"role": "Developer"
},
{
"name": "Sameer Kumar",
"email": "[email protected]",
"homepage": "https://github.com/Sameer8409",
"role": "Developer"
}
],
"keywords": ["Laravel", "Modular Structure", "Generate Modules", "Laravel Modules", "Laravel Modules Generator"],
"require": {
"sven/artisan-view": "^3.0"
},
"autoload": {
"psr-4": {
"Hestabit\\Module\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Hestabit\\Module\\ModuleServiceProvider"
]
}
}
}