legacyphpdoctor / pouler_soundcloud-api-php-7-4
PHP Wrapper for the SoundCloud API
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 4
pkg:composer/legacyphpdoctor/pouler_soundcloud-api-php-7-4
Requires
- php: ^7.4 || >=8.1
- ext-json: *
- symfony/http-client: ^5.4
- symfony/mime: ^5.4
Requires (Dev)
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.0
This package is auto-updated.
Last update: 2026-02-15 22:09:22 UTC
README
WARNING: This repository is a PHP 7.4 compatible fork of pouler/soundcloud-api.
SoundCloud API PHP
This is a PHP wrapper for the SoundCloud API.
Requirements
- PHP >=8.1
- Symfony HTTP Client
Installation
Install it using Composer:
composer require legacyphpdoctor/pouler_soundcloud-api-php-7-4
<?php require 'vendor/autoload.php'; $curl = new \Symfony\Component\HttpClient\CurlHttpClient(); $client = new PouleR\SoundCloudAPI\SoundCloudClient($curl); $api = new \PouleR\SoundCloudAPI\SoundCloudAPI($client); $api->setClientId('client.id'); // Get information about given user $api->getUser(123456); // Get information about current usr $api->setAccessToken('access.token'); $api->getUser(); var_dump($result);