fangx / testing-migration-command
testing migration commands
v1.0.2
2020-09-08 03:10 UTC
Requires
- php: ^7.2.0
- ext-json: *
- illuminate/console: ^6.0|^7.0|^8.0
- illuminate/database: ^6.0|^7.0|^8.0
- illuminate/support: ^6.0|^7.0|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- phpstan/phpstan: ^0.12
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2025-03-08 13:19:51 UTC
README
Laravel 默认的迁移命令只能执行第一层目录下的迁移文件, 本扩展支持多层目录 应用场景是在进行单元测试的时候, 可以自动执行所有的迁移文件
Install
Via Composer
composer require fangx/testing-migration-command --dev
Usage
在所有的 migrate 命令前加上 testing-
即可调用本扩展改写的 migrate 命令, 如:
php artisan testing-migrate
php artisan testing-migrate:rollback
在 tests/TestCase.php 中添加以下代码, 自动替换单测中的 migrate 相关命令
namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; use Illuminate\Support\Str; abstract class TestCase extends BaseTestCase { // ...others public function artisan($command, $parameters = []) { if (Str::startsWith($command, ['migrate', 'migration'])) { $command = 'testing-' . $command; } return parent::artisan($command, $parameters); } }