-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"name": "hariadi/laravel-boilerplate-generator",
"description": "Generate Model, attribute, relation, scope trait and repository for Laravel Boilerplate",
"keywords": ["boilerplate", "laravel", "model", "traits", "attribute", "repository", "relation", "scope", "artisan", "console", "command"],
"homepage": "https://github.com/hariadi/laravel-boilerplate-generator",
"license": "MIT",
"authors": [
{
"name": "Hariadi Hinta",
"email": "diperakui@yahoo.com"
}
],
"require": {
"illuminate/console": "5.7.*|5.8.*|^6.0|^7.0",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0",
"illuminate/filesystem": "5.7.*|5.8.*|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Hariadi\\Boilerplate\\": "src/"
},
"classmap": [
"tests"
]
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^5"
},
"extra": {
"laravel": {
"providers": [
"Hariadi\\Boilerplate\\GeneratorCommandServiceProvider"
]
}
}
}