hafael/easyrec-laravel
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