arjanwestdorp / laravel-imaginary-client
A laravel implementation of the imaginary client
Installs: 13 154
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=5.6.0
- arjanwestdorp/imaginary-client: ^1.0.6
- illuminate/support: 5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*
Requires (Dev)
- orchestra/testbench: ~3.4.2
- phpunit/phpunit: 5.7.1
README
This package is a Laravel implementation of the imaginary client.More information about this client can be found on https://github.com/arjanwestdorp/imaginary-client
Installation
The recommended way to install the client is through composer:
composer require arjanwestdorp/imaginary-client
Register the service provider and optionally the facade:
// config/app.php 'providers' => [ ... ArjanWestdorp\Imaginary\Laravel\ImaginaryServiceProvider::class, ]; 'aliases' => [ ... 'Imaginary' => ArjanWestdorp\Imaginary\Laravel\Imaginary::class, ];
Finally you'll need to add these two keys to your .env
file:
IMAGINARY_CLIENT=
IMAGINARY_URL=
Optionally you can publish the config file:
php artisan vendor:publish --provider="ArjanWestdorp\Imaginary\Laravel\ImaginaryServiceProvider" --tag="config"
Security
If you discover any security issues, please email arjanwestdorp@gmail.com instead of creating an issue.
Credits
License
The MIT License (MIT). Please see License File for more information.