-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "kerox/spotify",
"type": "library",
"description": "PHP Library to easily use Spotify API",
"keywords": [
"spotify",
"api",
"psr-7"
],
"homepage": "https://github.com/ker0x/spotify",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"homepage": "https://kerox.fr",
"email": "monteil.romain@gmail.com",
"role": "Author"
}
],
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"fig/http-message-util": "^1.1",
"laminas/laminas-diactoros": "^2.4",
"psr/http-client": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.5",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"kerox/oauth2-spotify": "To generate OAuth token for Spotify",
"php-http/httplug": "To send PSR-7 request with PSR-18 compatible HTTP client"
},
"autoload": {
"psr-4": {
"Kerox\\Spotify\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kerox\\Spotify\\Tests\\": "tests"
}
},
"scripts": {
"phpcsfixer": "vendor/bin/php-cs-fixer fix --diff --verbose --config=.php_cs",
"phpunit": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}