https://github.com/yusufusta/php-tidal
Unofficial PHP API for TIDAL music streaming service.
https://github.com/yusufusta/php-tidal
music php streaming tidal tidalapi
Last synced: 12 months ago
JSON representation
Unofficial PHP API for TIDAL music streaming service.
- Host: GitHub
- URL: https://github.com/yusufusta/php-tidal
- Owner: yusufusta
- License: mit
- Created: 2020-03-06T14:54:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T13:32:18.000Z (about 6 years ago)
- Last Synced: 2025-05-07T18:54:24.520Z (about 1 year ago)
- Topics: music, php, streaming, tidal, tidalapi
- Language: PHP
- Size: 16.6 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# php-tidal
Unofficial PHP API for TIDAL music streaming service.
## Installation
Install from [Composer](https://getcomposer.org/) using `composer`:
``` bash
$ composer require quiec/php-tidal dev-master
```
Also you can install without composer (for shared hosts). [Click here](https://github.com/Quiec/php-tidal/releases/download/1.0.0/tidalphp.zip) for download zip.
## Example usage
[+ Simple Downloader](https://github.com/Quiec/php-tidal/blob/master/examples/Downloader.php)
``` php
logIn("user", "pass");
$ara = $tidal->search("istanbul");
foreach ($ara as $sonuc) {
echo $sonuc["artist"]["name"] . " - " . $sonuc["title"] . "\n";
}
```
## Documentation
I will add.