Laravel 5.3+ integration for the Easyrec package.
hafael/easyrec-laravel is a Laravel package for laravel 5.3+ integration for the easyrec package..
It currently has 0 GitHub stars and 423 downloads on Packagist (latest version v1.0).
Install it with composer require hafael/easyrec-laravel.
Discover more Laravel packages by hafael
or browse all Laravel packages to compare alternatives.
Last updated
=================
Easyrec package integration for Laravel.
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,
],
BSD-3-Clause