hafael/owa-laravel-client

Laravel 5.3+ integration for the Open Web Analytics PHP REST Client package.

Installs: 281

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:package

pkg:composer/hafael/owa-laravel-client

v0.1.0 2019-03-22 22:41 UTC

This package is auto-updated.

Last update: 2025-09-23 13:42:11 UTC


README

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

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