forked from SachinAgarwal1337/Laravel-Generators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 940 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
{
"name": "skagarwal/generators",
"description": "Directory Structure Laravel 5.1 Generator.",
"type": "library",
"keywords": [
"Laravel",
"generators",
"Laravel 5.1"
],
"time": "2015-05-28",
"license": "MIT",
"authors": [
{
"name": "Sachin Agarwal",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.1",
"illuminate/console": "~5.1",
"illuminate/filesystem": "~5.1",
"illuminate/container": "~5.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"skagarwal/reflection": "~1.0"
},
"autoload": {
"psr-4": {
"SKAgarwal\\Generators\\": "src/"
}
},
"autoload-dev": {
"files": [
"Tests/Helpers/helper.php"
],
"psr-4": {
"Tests\\": "Tests/"
}
}
}