A very simple and not fully implemented Spotify API wrapper
use Monks\Spotify\Spotify;
$spotify = new Spotify($clientId, $secret);
$playlist = $spotify->getPlaylist($playlistId);
$tracks = $spotify->getPlaylistTracks($playlistId, $offset, $limit);
A very simple and not fully implemented Spotify API wrapper
use Monks\Spotify\Spotify;
$spotify = new Spotify($clientId, $secret);
$playlist = $spotify->getPlaylist($playlistId);
$tracks = $spotify->getPlaylistTracks($playlistId, $offset, $limit);