forked from jwilsson/spotify-web-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 820 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": "jwilsson/spotify-web-api-php",
"description": "PHP implementation of Spotify's Web API.",
"type": "library",
"license": "MIT",
"keywords": ["spotify"],
"homepage": "http://jwilsson.github.io/spotify-web-api-php/",
"authors": [
{
"name": "Jonathan Wilsson",
"email": "jonathan.wilsson@gmail.com"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"satooshi/php-coveralls": "dev-master",
"squizlabs/php_codesniffer": "2.*",
"vlucas/phpdotenv": "1.*"
},
"autoload": {
"psr-4": {
"SpotifyWebAPI\\": "src/"
}
},
"scripts": {
"test": "phpcs src -v --standard=PSR2 && phpunit"
}
}