nekland / soundcloud-api
Simple library you can build you're api upon.
dev-master
2014-04-14 22:13 UTC
Requires
- guzzle/guzzle: >=3.7
- nekland/base-api: ~0.0.1
Requires (Dev)
- php: >=5.4
- phpunit/phpunit: >=3.7
Suggests
- nekland/nekland-youtube-api: Youtube API made easy !
This package is auto-updated.
Last update: 2024-10-26 01:58:40 UTC
README
Hello guys. I was searching for a cute api wrapper for soundcloud. I didn't find any so I create mine :) .
Note: this project is not complete at all. But is easy to complete! Do not hesitate to PR or Clone ;-) . Just remember the MIT license.
Installation
You should use composer to install it, and it's sooooo easy to install:
composer require 'nekland/soundcloud-api'
Usage
It's also so easy to use:
$soundcloud = new SoundCloud(); /** @var \Nekland\SoundCloudApi\Api\Tracks $tracksApi */ $tracksApi = $soundcloud->api('tracks'); $dataForTrack = $trackApi->getTrackFromLink('https://soundcloud.com/serious-url/lemaitre-high-tide');
You can check the Api
namespace to learn more.