-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.2 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
{
"name": "mandisma/spotify-api-client",
"type": "library",
"description": "Http Client for the Spotify API.",
"keywords": [
"Spotify",
"http",
"client",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Maël Mandis",
"email": "mandis68@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.2",
"php": "^8.0 || ^8.1",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9.5",
"vimeo/psalm": "^4.24.0",
"pestphp/pest": "^1.21.3"
},
"autoload": {
"psr-4": {
"Mandisma\\SpotifyApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mandisma\\SpotifyApiClient\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:coverage": "XDEBUG_MODE=coverage pest --coverage",
"psalm": "psalm",
"lint": "php-cs-fixer fix --config=.php_cs.dist.php -v --dry-run",
"lint:fix": "php-cs-fixer fix --config=.php_cs.dist.php -v"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}