-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 897 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 897 Bytes
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
{
"name": "pouler/soundcloud-api",
"description": "PHP Wrapper for the SoundCloud API",
"license": "MIT",
"authors": [
{
"name": "Paul Radt",
"email": "paulradt@gmail.com"
}
],
"config": {
"sort-packages": true
},
"keywords": [ "SoundCloud", "api" ],
"homepage": "https://github.com/PouleR/soundcloud-api",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.0"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/http-client": "^6.4|^7.0|^8.0",
"symfony/mime": "^6.4|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"PouleR\\SoundCloudAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PouleR\\SoundCloudAPI\\Tests\\": "tests/"
}
}
}