forked from Xethron/migrations-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 701 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 701 Bytes
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
{
"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.3.0",
"illuminate/support": "~4.1",
"way/generators": "2.*",
"doctrine/dbal": "~2.4"
},
"autoload": {
"psr-0": {
"Xethron\\MigrationsGenerator": "src/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"mockery/mockery": ">=0.9.0",
"illuminate/cache": ">=4.1.0",
"illuminate/console": ">=4.1.0"
}
}