-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "njasm/soundcloud",
"description": "Soundcloud API Wrapper written in PHP with OAuth 2.0 support",
"homepage": "http://github.com/njasm/soundcloud",
"license": "MIT",
"keywords": ["api", "soundcloud", "webservices", "webservice"],
"authors": [
{
"name": "Nelson João Morais",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/njasm/soundcloud/issues",
"source": "https://github.com/njasm/soundcloud"
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "10.5.27",
"php-coveralls/php-coveralls": "v2.7.0"
},
"require": {
"php": ">=5.6.0",
"njasm/container": "^1.0",
"ext-json": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Njasm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Njasm\\Soundcloud\\Tests\\": "tests/"
}
}
}