quiec / php-tidal
Unofficial PHP API for TIDAL music streaming service
1.0.0
2020-03-07 09:09 UTC
Requires
- guzzlehttp/guzzle: ^6.5
This package is auto-updated.
Last update: 2025-03-23 00:15:52 UTC
README
Unofficial PHP API for TIDAL music streaming service.
Installation
Install from Composer using composer
:
$ composer require quiec/php-tidal dev-master
Also you can install without composer (for shared hosts). Click here for download zip.
Example usage
<?php require_once "vendor/autoload.php"; use Tidal\TidalAPI; $tidal = new TidalAPI(); $tidal->logIn("user", "pass"); $ara = $tidal->search("istanbul"); foreach ($ara as $sonuc) { echo $sonuc["artist"]["name"] . " - " . $sonuc["title"] . "\n"; }
Documentation
I will add.