forked from calliostro/spotify-web-api-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 821 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
{
"name": "calliostro/spotify-web-api-bundle",
"description": "Spotify Web API client for PHP >=7.2.5 and Symfony 5",
"type": "symfony-bundle",
"require": {
"php": ">=7.2.5",
"jwilsson/spotify-web-api-php": "^5.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0"
},
"autoload": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0"
},
"autoload-dev": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "calliostro",
"email": "[email protected]"
}
]
}