forked from PouleR/apple-music-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1006 Bytes
/
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": "pouler/apple-music-api",
"description": "PHP Wrapper for the Apple Music API",
"license": "MIT",
"authors": [
{
"name": "Paul Radt",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"keywords": [ "Apple Music", "api" ],
"homepage": "https://github.com/PouleR/apple-music-api",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.0"
},
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"symfony/http-client": "^4.3|^4.4|^5.0",
"web-token/jwt-key-mgmt": "^2.0",
"web-token/jwt-signature": "^2.0",
"web-token/jwt-signature-algorithm-ecdsa": "^2.0"
},
"autoload": {
"psr-4": {
"PouleR\\AppleMusicAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PouleR\\AppleMusicAPI\\Tests\\": "tests/"
}
}
}