-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (36 loc) · 974 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
{
"name": "calliostro/spotify-web-api-bundle",
"description": "Spotify Web API client for Symfony 5, Symfony 6 and Symfony 7",
"type": "symfony-bundle",
"require": {
"php": "^7.3|^8.0|^8.1|^8.2",
"jwilsson/spotify-web-api-php": "^5.0|^6.0",
"symfony/config": "^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^5.0|^6.0|^7.0",
"symfony/http-kernel": "^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"phpunit/phpunit": "*"
},
"autoload-dev": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\Tests\\": "tests/"
}
},
"scripts":{
"test": "phpunit tests"
},
"license": "MIT",
"authors": [
{
"name": "calliostro",
"email": "[email protected]"
}
]
}