Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 377 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 377 Bytes

TidalPHP

A PHP wrapper for the unofficial TIDAL API.

Usage

<?php

use Tidal\Tidal;

$tidal = new Tidal();

$tidal->connect('email', 'password')->then(function ($tidal) {
	echo "Connected.".PHP_EOL;
}, function ($e) {
	echo "There was an error connecting to TIDAL: {$e->getMessage()}".PHP_EOL;
});

$tidal->run();

License

See LICENSE.md.