forked from kitloong/laravel-migrations-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1009 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
38
39
40
41
{
"name": "kitloong/laravel-migrations-generator",
"description": "Generates Laravel Migrations from an existing database",
"keywords": ["laravel", "lumen", "migration", "generator", "migrations", "artisan"],
"license": "MIT",
"authors": [
{
"name": "Kit Loong",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0",
"doctrine/dbal": "~2.4"
},
"require-dev": {
"orchestra/testbench": "^3.6|^4.0|^5.0",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"KitLoong\\MigrationsGenerator\\": "src/KitLoong/MigrationsGenerator",
"Xethron\\MigrationsGenerator\\": "src/Xethron/MigrationsGenerator",
"Way\\Generators\\": "src/Way/Generators"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
]
}
}
}