wimmie / laravel-xibo-api
A Laravel package for using the Xibo api
Fund package maintenance!
wimmie
Requires
- php: ^8.1
- ext-curl: *
- ext-json: *
- illuminate/contracts: ^v10.48.2
Requires (Dev)
- orchestra/testbench: ^v8.22.0
- phpunit/phpunit: ^9.6.17
This package is auto-updated.
Last update: 2025-03-13 23:26:00 UTC
README
A wrapper for the Xibo api, see https://xibo.org.uk/manual/api/ as well.
Installation
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', ''), ];
Usage
$xiboApi = new Wimmie\XiboApi(); echo $xiboApi->misc()->about();
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.