PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
kitloong
/
laravel-migrations-generator
{ "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": "kitloong1008@gmail.com" } ], "require": { "php": ">=7.1.3", "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0", "doctrine/dbal": "~2.4|^3.0" }, "require-dev": { "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0", "squizlabs/php_codesniffer": "^3.5", "mockery/mockery": "^1.0", "ext-pdo": "*", "friendsofphp/php-cs-fixer": "^2.19.0|^3.1", "nunomaduro/larastan": "^0.4|^0.5|^0.6|^0.7", "phpmd/phpmd": "^2.10" }, "autoload": { "psr-4": { "MigrationsGenerator\\": "src/MigrationsGenerator" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "extra": { "laravel": { "providers": [ "MigrationsGenerator\\MigrationsGeneratorServiceProvider" ] } }, "minimum-stability": "dev", "prefer-stable": true, "scripts": { "action-env-setup": [ "@php -r \"file_exists('.env') || copy('.env.action', '.env');\"" ], "check-migration-files": [ "rm -rf migrations/mysql8/* migrations/mysql57/* migrations/pgsql/* migrations/sqlsrv/*", "phpunit --filter testRun tests/Feature/MySQL57/CommandTest.php && cp storage/migrations/* migrations/mysql57/ && cp storage/sql/* migrations/mysql57/", "phpunit --filter testCollation tests/Feature/MySQL57/CommandTest.php && cp storage/migrations/* migrations/mysql57/", "phpunit --filter testRun tests/Feature/MySQL8/CommandTest.php && cp storage/migrations/* migrations/mysql8/ && cp storage/sql/* migrations/mysql8/", "phpunit --filter testCollation tests/Feature/MySQL8/CommandTest.php && cp storage/migrations/* migrations/mysql8/", "phpunit --filter testRun tests/Feature/PgSQL/CommandTest.php && cp storage/migrations/* migrations/pgsql/ && cp storage/sql/* migrations/pgsql/", "phpunit --filter testCollation tests/Feature/PgSQL/CommandTest.php && cp storage/migrations/* migrations/pgsql/", "phpunit --filter testRun tests/Feature/SQLSrv/CommandTest.php && cp storage/migrations/* migrations/sqlsrv/ && cp storage/sql/* migrations/sqlsrv/", "phpunit --filter testCollation tests/Feature/SQLSrv/CommandTest.php && cp storage/migrations/* migrations/sqlsrv/" ] } }
[-] composer.json
[edit]
[+]
..
[-] LICENSE.txt
[edit]
[-] README.md
[edit]
[+]
src