Initial commit
parents
.gitignore
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "thibaud-dauce/laravel-recursive-migrations", | ||
"description": "This package allows to put Laravel migrations into subdirectories", | ||
"type": "library", | ||
"require": { | ||
"php": ">=7.0.0", | ||
"illuminate/support": "^5.3", | ||
"illuminate/console": "^5.3", | ||
"symfony/finder": "^3.1", | ||
"symfony/console": "^3.1", | ||
"illuminate/database": "^5.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ThibaudDauce\\LaravelRecursiveMigrations\\": "src/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Thibaud Dauce", | ||
"email": "thibaud@dauce.fr" | ||
} | ||
] | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
src/Subdirectories.php
0 → 100644
Please register or sign in to comment