Looking to hire Laravel developers? Try LaraJobs

owa-laravel-client maintained by hafael

Description
Laravel 5.3+ integration for the Open Web Analytics PHP REST Client package.
Author
Last update
2019/03/22 23:41 (dev-master)
License
Downloads
281

Comments
comments powered by Disqus

Open Web Analytics PHP REST Client for Laravel 5.3+

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

Installation

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

Run the composer require command from your terminal:

$ composer require hafael/owa-laravel-client

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

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

If you prefer, add the facade

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

License

BSD-3-Clause