adavkay / laravel-soundcloud
A Soundcloud Service Provider for Laravel 4
Installs: 578
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
pkg:composer/adavkay/laravel-soundcloud
Requires
- php: >=5.3.0
- ise/php-soundcloud: 3.*
- laravel/framework: >=4.0
This package is not auto-updated.
Last update: 2025-10-21 07:50:58 UTC
README
A simple Laravel 4 service provider for including the PHP Soundcloud API
Installation
The Soundcloud Service Provider can be installed via Composer by requiring the adavkay/laravel-soundcloud package.
Usage
To use the Soundcloud Service Provider, you must register the provider when bootstrapping your Laravel application.
Find the providers key in app/config/app.php and register the Soundcloud Service Provider.
'providers' => array( // ... 'Adavkay\Soundcloud\SoundcloudServiceProvider', )
You do not need to add an alias as I have done this in the service provider itself.
Config
Run php artisan config:publish adavkay/laravel-soundcloud and then update the published config file with your Soundcloud API credentials and redirect URI.