-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (38 loc) · 1.03 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
39
40
41
42
43
{
"name": "iannazzi/laravel-database-importer",
"type": "library",
"description": "From an existing database for laravel 5 Create Migrations Models, Seeds, Factories, and Tests",
"keywords": ["laravel", "generators"],
"license": "MIT",
"authors": [
{
"name": "Craig Iannazzi",
"email": "[email protected]",
"homepage": "http://embrasse-moi.com",
"role": "Developer"
}
],
"require": {
"laravel/framework": "5.1.*",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"xethron/migrations-generator": "dev-l5",
"way/generators": "dev-feature/laravel-five-stable",
"laravel/homestead": "^2.1",
"laracasts/generators": "^1.1"
},
"autoload": {
"psr-4": {
"Iannazzi\\Importer\\": "src/"
}
},
"repositories": [
{
"type": "git",
"url": "[email protected]:jamisonvalenta/Laravel-4-Generators.git"
}
],
"minimum-stability": "dev"
}