-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (55 loc) · 1.62 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
54
55
56
57
{
"name": "stephan-strate/php-cover-art-archive-api",
"type": "library",
"description": "PHP wrapper for CoverArtArchive api. Supports object-oriented access using repositories and factories.",
"keywords": [
"coverart",
"library",
"php",
"api"
],
"homepage": "https://github.com/stephan-strate/php-cover-art-archive-api",
"license": "MIT",
"authors": [
{
"name": "Stephan Strate",
"email": "[email protected]",
"homepage": "https://stephan.codes",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"php-http/httplug": "^2.2",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.10",
"php-http/client-implementation": "^1.0",
"symfony/serializer": "^5.2",
"symfony/property-access": "^5.2",
"doctrine/annotations": "^1.11",
"ext-json": "*",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"guzzlehttp/psr7": "^1.2 || ^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"php-http/mock-client": "^1.4.1",
"phpstan/phpstan": "^0.12.75 || ^1.0.0"
},
"autoload": {
"psr-4": {
"CoverArtArchive\\": "lib/CoverArtArchive/"
}
},
"autoload-dev": {
"psr-4": {
"CoverArtArchive\\Tests\\": "test/CoverArtArchive/Tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --verbose",
"phpstan": "vendor/bin/phpstan analyse --no-progress"
}
}