-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 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
{
"name": "hesammousavi/laravel-module-creator",
"description": "a tool for build your laravel modules",
"license": "MIT",
"homepage": "https://github.com/Hesammousavi/laravel-module-creator",
"authors": [
{
"name": "Hesam Mousavi",
"email": "[email protected]"
}
],
"keywords": ["Laravel Module" , "Laravel" , "Module Creator"],
"scripts": {
"test": "./vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Hesammousavi\\LaravelModuleCreator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Hesammousavi\\LaravelModuleCreator\\LaravelModuleCreatorServiceProvider"
]
}
},
"require": {
"illuminate/support": "^9.0 || ^10.0 || ^11.0 ",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5"
}
}