webmachine/patches

Patches for Laravel 5

v1.1.3 2022-03-10 19:22 UTC

This package is auto-updated.

Last update: 2024-04-11 00:09:26 UTC


README

Install

Via Composer

$ composer require webmachine/patches

Next, you must install the service provider:

// config/app.php
'providers' => [
    ...
    Webmachine\Patches\PatchesServiceProvider::class,
];

Publish

$ php artisan vendor:publish --provider="Webmachine\Patches\PatchesServiceProvider"

Usage

Create a new Patch

$ php artisan make:patch MyPatch

Run Patch

$ php artisan patch MyPatch

Show Patch Log

$ php artisan patch:log

License

The MIT License (MIT). Please see License File for more information.