forked from Toolstation/iseed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·35 lines (35 loc) · 929 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
{
"name": "asamaru7/iseed",
"description": "Generate a new Laravel database seed file based on data from the existing database table.",
"keywords": ["laravel", "generators", "seed", "artisan"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Tihomir Opacic",
"email": "tihomir.opacic@orangehilldev.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "^5.3.8"
},
"require-dev": {
"mockery/mockery": "dev-master",
"illuminate/filesystem": "5.x",
"laravel/framework": "^5.3.8"
},
"autoload": {
"psr-0": {
"Orangehill\\Iseed": "src/"
},
"classmap": [
"src/Orangehill/Iseed/Exceptions.php"
]
},
"autoload-dev": {
"psr-4": {
"Orangehill\\Iseed\\Tests\\": "tests"
}
},
"minimum-stability": "dev"
}