vswteam/laravel-patches-command

Execute patches command once

1.0.0 2022-06-11 22:51 UTC

This package is auto-updated.

Last update: 2024-05-12 03:33:14 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.