PHP code example of wimmie / laravel-xibo-api

1. Go to this page and download the library: Download wimmie/laravel-xibo-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wimmie / laravel-xibo-api example snippets


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();
bash
php artisan vendor:publish --provider="Wimmie\XiboApi\XiboApiServiceProvider" --tag="config"