Looking to hire Laravel developers? Try LaraJobs

easyrec-laravel maintained by hafael

Description
Laravel 5.3+ integration for the Easyrec package.
Author
Last update
2017/06/14 00:48 (dev-master)
License
Links
Downloads
423

Comments
comments powered by Disqus

Easyrec Laravel

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

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