wimmie/laravel-xibo-api is a Laravel package for a laravel package for using the xibo api.
It currently has 3 GitHub stars and 23 downloads on Packagist (latest version 0.1.1).
Install it with composer require wimmie/laravel-xibo-api.
Discover more Laravel packages by wimmie
or browse all Laravel packages to compare alternatives.
Last updated
A wrapper for the Xibo api, see https://xibo.org.uk/manual/api/ as well.
You can install the package via composer:
composer require wimmie/laravel-xibo-api
You can publish the config file with:
php artisan vendor:publish --provider="Wimmie\XiboApi\XiboApiServiceProvider" --tag="config"
This is the contents of the published config file:
return [
'url' => env('XIBO_URL', ''),
'client_id' => env('XIBO_CLIENT_ID', ''),
'client_secret' => env('XIBO_CLIENT_SECRET', ''),
];
$xiboApi = new Wimmie\XiboApi();
echo $xiboApi->misc()->about();
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.