-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
40
41
42
{
"name": "pouler/spotify-artists-api",
"description": "PHP Package for the (unofficial) Spotify Artists API",
"license": "MIT",
"authors": [
{
"name": "Paul Radt",
"email": "[email protected]"
}
],
"keywords": [ "spotify", "api" ],
"homepage": "https://github.com/PouleR/spotify-artists-api",
"type": "library",
"config": {
"sort-packages": true
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^9"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"pouler/spotify-login": "^0.3",
"symfony/http-client": "^5.4|^6",
"symfony/property-access": "^5.4|^6",
"symfony/serializer": "^5.4|^6"
},
"suggest": {
"pouler/spotify-login": "To obtain an access token to be used in API calls"
},
"autoload": {
"psr-4": {
"PouleR\\SpotifyArtistsAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PouleR\\SpotifyArtistsAPI\\Tests\\": "tests/"
}
}
}