This is a PHP library to connect with StationPlaylist Studio remotely. It can be used for loading all available songs in the song library and send song requests to Studio.
Note: development in progress. Not for production.
You can install the package via composer:
composer require origamivision/stationplaylist
use Origamivision\Stationplaylist\Client;
$spl = new Client('0.0.0.0', 0);
// List all available songs
$results = $spl->search('*');
// Send a song request to Studio
$spl->request('C:/absolute/path/to/music - file.mp3', 'Name of requester', 'Location of request');
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.