forked from slampenny/SmartSeeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1002 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
{
"name": "jlapp/smart-seeder",
"description": "Smart Seeder adds the same methology to seeding that is currently used with migrations in order to let you seed in batches, seed to production databases or other environments, and to rerun seeds without wiping out your data.",
"keywords": ["laravel", "seed", "database", "seeding", "table", "seeder", "smart"],
"version": "1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "jlapp",
"email": "jordan@jordanlapp.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.1.*",
"illuminate/console": "5.1.*",
"illuminate/database": "5.1.*",
"illuminate/filesystem": "5.1.*"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"henrikbjorn/phpspec-code-coverage": "~0.2"
},
"autoload": {
"psr-0": {
"Jlapp\\SmartSeeder\\": "src/",
"": "src"
}
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"prefer-stable": true
}