We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 232847a + 332b3c0 commit b55a46aCopy full SHA for b55a46a
README.md
@@ -1,2 +1,32 @@
1
# php-tidal
2
+
3
Unofficial PHP API for TIDAL music streaming service.
4
5
+## Installation
6
7
+Install from [Composer](https://getcomposer.org/) using `composer`:
8
9
+``` bash
10
+$ composer require quiec/php-tidal
11
+```
12
13
+## Example usage
14
15
+``` php
16
+<?php
17
+require_once "vendor/autoload.php";
18
19
+use Tidal\TidalAPI;
20
21
+$tidal = new TidalAPI();
22
+$tidal->logIn("user", "pass");
23
+$ara = $tidal->search("istanbul");
24
25
+foreach ($ara as $sonuc) {
26
+ echo $sonuc["artist"]["name"] . " - " . $sonuc["title"] . "\n";
27
+}
28
29
30
+## Documentation
31
32
+I will add.
0 commit comments