-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.13 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.13 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "calliostro/php-discogs-api",
"description": "Lightweight Discogs API client for PHP 8.1+ with modern developer comfort — Clean parameter API and minimal dependencies",
"type": "library",
"keywords": [
"php",
"discogs",
"discogs-api",
"music",
"api-client",
"web-api",
"audio",
"vinyl",
"guzzle",
"library",
"php8",
"lightweight",
"clean-api",
"modern-php",
"minimal-dependencies"
],
"license": "MIT",
"authors": [
{
"name": "Richard van den Brand",
"email": "richard@vandenbrand.org"
},
{
"name": "calliostro",
"email": "calliostro@gmail.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.1.0"
}
},
"autoload": {
"psr-4": {
"Calliostro\\Discogs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Calliostro\\Discogs\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testsuite=\"Unit Tests\"",
"test-integration": "vendor/bin/phpunit --testsuite=\"Integration Tests\"",
"test-all": "vendor/bin/phpunit --testsuite=\"All Tests\"",
"test-coverage": "vendor/bin/phpunit --testsuite=\"Unit Tests\" --coverage-html coverage --coverage-clover coverage.xml",
"test-coverage-all": "vendor/bin/phpunit --testsuite=\"All Tests\" --coverage-html coverage --coverage-clover coverage.xml",
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff --verbose",
"cs-fix": "vendor/bin/php-cs-fixer fix --verbose",
"analyse": "phpstan analyse src/ tests/ --level=8"
},
"minimum-stability": "stable",
"prefer-stable": true
}