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.
1 parent cd5232e commit df3cdd7Copy full SHA for df3cdd7
composer.json
@@ -14,7 +14,7 @@
14
"minimum-stability": "dev",
15
"autoload":{
16
"psr-4" : {
17
- "Tidal\": "src/Tidal/"
+ "Tidal\\": "src/Tidal/"
18
}
19
20
-}
+}
examples/index.php
@@ -1,5 +1,5 @@
1
<?php
2
-require __DIR__.'/src/Tidal/TidalAPI.php';
+require_once "vendor/autoload.php";
3
4
use Tidal\TidalAPI;
5
src/Tidal/TidalAPI.php
@@ -18,7 +18,6 @@ class TidalAPI
public function __construct()
{
21
- require 'vendor/autoload.php';
22
$this->client = new Client();
23
24
0 commit comments