hafael/easyrec-laravel

Laravel 5.3+ integration for the Easyrec package.

v1.0 2017-06-13 22:48 UTC

This package is auto-updated.

Last update: 2024-04-29 03:35:26 UTC


README

=================

Easyrec package integration for Laravel.

Installation

PHP 5.4+ or HHVM 3.3+, and Composer are required.

Run the composer require command from your terminal:

$ composer require hafael/easyrec-laravel

Open [LaravelRoot]/config/app.php and register the required service provider above your application providers.

'providers' => [
    /*
     * Application Service Providers...
     */
    ...
    Hafael\Easyrec\Laravel\EasyrecServiceProvider::class,
],

If you prefer, add the facade

'aliases' => [
    
    ...
    'Easyrec' => Hafael\Easyrec\Laravel\Facades\Easyrec::class,
],

License

BSD-3-Clause