-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 948 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
38
39
40
41
42
43
44
{
"name": "hungthai1401/laravel-hmvc",
"description": "HMVC structure for Laravel",
"type": "library",
"keywords": [
"modules",
"laravel",
"module",
"hmvc"
],
"authors": [
{
"name": "Nguyen Hung Thai",
"email": "hungthai1401.it@gmail.com"
}
],
"require": {
"php": "^7.2.5"
},
"require-dev": {
"laravel/framework": "^6.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"HT\\Modules\\": "src"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"HT\\Modules\\Providers\\ModuleServiceProvider"
]
}
},
"scripts": {
"pcf": "vendor/bin/php-cs-fixer fix --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}