forked from oscarafdev/migrations-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 873 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": "oscarafdev/migrations-generator",
"description": "Generates Laravel Migrations from an existing database",
"keywords": ["laravel", "migration", "generator", "migrations", "artisan"],
"license": "MIT",
"authors": [
{
"name": "Oscar Fernandez",
"email": "oscarafdev@gmail.com"
}
],
"require": {
"php": "^7.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0",
"oscarafdev/laravel-4-generators": "^3.1",
"doctrine/dbal": "~2.10"
},
"autoload": {
"psr-0": {
"OscarAFDev\\MigrationsGenerator": "src/"
}
},
"require-dev": {
"phpunit/phpunit": ">=8.0",
"mockery/mockery": ">=1.0.3",
"illuminate/cache": ">=6.0",
"illuminate/console": ">=6.0"
},
"extra": {
"laravel": {
"providers": [
"Way\\Generators\\GeneratorsServiceProvider",
"OscarAFDev\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
]
}
}
}