Package Data | |
---|---|
Maintainer Username: | arjanwestdorp |
Maintainer Contact: | arjanwestdorp@gmail.com (Arjan Westdorp) |
Package Create Date: | 2017-05-10 |
Package Last Update: | 2024-02-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:04:51 |
Package Statistics | |
---|---|
Total Downloads: | 13,148 |
Monthly Downloads: | 140 |
Daily Downloads: | 7 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
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 arjanwestdorp@gmail.com instead of creating an issue.
The MIT License (MIT). Please see License File for more information.