-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
37 lines (37 loc) · 896 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
{
"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": "^10",
"squizlabs/php_codesniffer": "^3.0"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/http-client": "^6|^7",
"web-token/jwt-library": "^3.0|^4.0"
},
"autoload": {
"psr-4": {
"PouleR\\AppleMusicAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PouleR\\AppleMusicAPI\\Tests\\": "tests/"
}
}
}