-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.08 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
{
"name": "kerox/oauth2-spotify",
"type": "library",
"description": "Spotify Oauth 2.0 Client Provider for The PHP League OAuth2-Client",
"keywords": [
"spotify",
"oauth",
"oauth2",
"client",
"authorization",
"authentication"
],
"homepage": "https://github.com/ker0x/oauth2-spotify",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"email": "monteil.romain@gmail.com",
"homepage": "https://kerox.fr",
"role": "Author"
}
],
"require": {
"php": ">=8.1",
"league/oauth2-client": "^2.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Kerox\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kerox\\OAuth2\\Client\\Tests\\": "tests/"
}
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff --verbose",
"phpunit": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}