-
Notifications
You must be signed in to change notification settings - Fork 585
/
composer.json
37 lines (37 loc) · 866 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
{
"name": "xethron/migrations-generator",
"description": "Generates Laravel Migrations from an existing database",
"keywords": ["laravel", "migration", "generator", "migrations", "artisan"],
"license": "MIT",
"authors": [
{
"name": "Bernhard Breytenbach",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=4.1",
"xethron/laravel-4-generators": "~3.1.0",
"doctrine/dbal": "~2.4"
},
"autoload": {
"psr-0": {
"Xethron\\MigrationsGenerator": "src/"
}
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"mockery/mockery": ">=0.9.0",
"illuminate/cache": ">=4.1.0",
"illuminate/console": ">=4.1.0"
},
"extra": {
"laravel": {
"providers": [
"Way\\Generators\\GeneratorsServiceProvider",
"Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
]
}
}
}