A laravel implementation of the imaginary client
arjanwestdorp/laravel-imaginary-client is a Laravel package for a laravel implementation of the imaginary client.
It currently has 1 GitHub stars and 15.716 downloads on Packagist (latest version 1.4.0).
Install it with composer require arjanwestdorp/laravel-imaginary-client.
Discover more Laravel packages by arjanwestdorp
or browse all Laravel packages to compare alternatives.
Last updated
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
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"
If you discover any security issues, please email [email protected] instead of creating an issue.
The MIT License (MIT). Please see License File for more information.