-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.23 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
43
44
45
46
47
48
{
"name": "calliostro/spotify-web-api-bundle",
"description": "Symfony bundle for the Spotify Web API — streaming, music data & integration made easy",
"type": "symfony-bundle",
"keywords": [
"symfony-bundle",
"symfony",
"php",
"spotify",
"spotify-api",
"music",
"api-client",
"web-api",
"audio",
"streaming"
],
"homepage": "https://github.com/calliostro/spotify-web-api-bundle",
"license": "MIT",
"authors": [
{
"name": "calliostro",
"email": "calliostro@gmail.com"
}
],
"require": {
"php": "^8.1",
"jwilsson/spotify-web-api-php": "^6.0|^7.0",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/http-kernel": "^6.4|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.0|^8.0"
},
"autoload-dev": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit"
}
}