Download the PHP package jalameta/jps-patcher without Composer
On this page you can find all versions of the php package jalameta/jps-patcher. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package jps-patcher
LARAVEL PATCHER
A (migration like) patcher for a smoldering production update.
Already tested on:
- Laravel: 6. | 7.* | 8.\
Background :
Our team has been made a stupid thing that affect database in our project. It was happens many times, and we are usually go tinkering or direct edit on a database to fix those problems. The problem is we need to record those change, so we made this package. Besides, we sometime need to doing bulk insert user for our application, so patch will be the best solution.
INSTALLATION
do either of this methods below.
-
via shell
- adding
"jalameta/jps-patcher": "^2.0"
tocomposer.json
POST INSTALLATION
this process is optional, you can skip it though.
-
applying into your project.
-
Laravel >= 5.8
- Automatically loaded :)
- Laravel <= 5.8
- Add the
\Jalameta\Patcher\PatcherServiceProvider
intoproviders
array inconfig/app.php
- Add the
-
- patches table creation.
USAGE
CREATE NEW PATCH
for creating new patch you just need to run these following command
wait, do you feels familiar huh?, we do too. The truth is, this package is extending laravel migration.
after run those command, you will see new file in
patches
folder. Those file will be like:
Method patch
on these file will be filled with your logic.
in there is some useful properties
that you can use for supporting your patch such as:
$container: \Illuminate\Container\Container
-
$command: \Illuminate\Console\Command
we frequently used
$command
property to print process that we're doing. example:you can learn more about
\Illuminate\Console\Command
here. -
$logger: \Illuminate\Log\Logger
$logger
will store log instorage/logs/patches.log
. if you want to change it, add this line below in yourconfig/logging.php
in channels section.you can learn more about
\Illuminate\Log\Logger
hereSHOW PATCH STATUS
Example:
RUN A PATCH(ES)
Example: