vswteam / laravel-patches-command
Execute patches command once
1.0.0
2022-06-11 22:51 UTC
Requires
- php: ^7.4|^8.0|^8.1
Requires (Dev)
- orchestra/testbench: ^5.0|^6.0|^7.0
- phpunit/phpunit: ^9.4
This package is auto-updated.
Last update: 2025-03-12 05:31:35 UTC
README
執行一次性的補丁指令
Installation
You can install the package via composer:
composer require vswteam/laravel-patches-command
You can publish and run the migrations with:
php artisan vendor:publish --provider="Vswteam\LaravelPatchesCommand\LaravelPatchesCommandServiceProvider" --tag="migrations" php artisan migrate
You can publish the config file with:
php artisan vendor:publish --provider="Vswteam\LaravelPatchesCommand\LaravelPatchesCommandServiceProvider" --tag="config"
This is the contents of the published config file:
return [ 'patches' => [ ] ];
Usage
修改 laravel-patches-command.php
,加入要執行的指令列表
return [ 'patches' => [ 'patch:clear-dummy-logs' => '2022-01-01 Clear Dummy Logs', 'patch:clear-dummy-files' => '2022-01-02 Clear Dummy Files', ] ];
然後執行 php artisan patches:run
即可
Testing
vendor/bin/phpunit
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.