0plus1/patchr-laravel

Laravel wrapper for Patchr

v0.9.3 2017-04-19 03:37 UTC

This package is auto-updated.

Last update: 2024-05-04 12:54:13 UTC


README

MySQL version control Patchr on github.

Install

Composer

composer require 0plus1/patchr-laravel

Create folder Create a new folder named patchr in your storage folder.

Laravel

In ./config/app.php

Add:

Zeroplusone\Patchr\Laravel\LaravelServiceProvider::class,

To the 'providers' array.

Then run:

php artisan vendor:publish --provider="Zeroplusone\Patchr\Laravel\LaravelServiceProvider" --tag="config"

To publish the configuration file.

Lumen

First copy the configuration file: ./vendor/0plus1/patchr-laravel/config/patchr.php to ./config/patchr.php

In ./bootstrap/app.php add:

$app->register( Zeroplusone\Patchr\Laravel\LumenServiceProvider::class);

To the 'Register Service Providers' section.

$app->configure('patchr');

To the 'Create The Application' section.

####Publish config

Laravel

Lumen

php artisan vendor:publish --provider="Zeroplusone\Patchr\Laravel\LumenServiceProvider" --tag="config"

This will publish a ./config/patchr.php file.

####Configure

Change configuration to suit your app needs (Documentation).