forked from ricbra/RicbraDiscogsBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (67 loc) · 2.39 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (67 loc) · 2.39 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
{
"name": "calliostro/discogs-bundle",
"description": "Ultra-lightweight Symfony bundle for the Discogs API — vinyl, music data & integration made easy",
"type": "symfony-bundle",
"keywords": [
"symfony-bundle",
"symfony",
"php",
"discogs",
"discogs-api",
"music",
"api-client",
"web-api",
"audio",
"vinyl",
"php8",
"lightweight"
],
"homepage": "https://github.com/calliostro/discogs-bundle",
"license": "MIT",
"authors": [
{
"name": "calliostro",
"email": "calliostro@gmail.com"
}
],
"require": {
"php": "^8.1",
"calliostro/php-discogs-api": "^4.0",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/http-kernel": "^6.4|^7.0|^8.0"
},
"suggest": {
"symfony/rate-limiter": "For advanced rate limiting functionality"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.0|^8.0",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.87",
"symfony/rate-limiter": "^6.4|^7.0|^8.0",
"symfony/security-core": "^6.4|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Calliostro\\DiscogsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Calliostro\\DiscogsBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit --testsuite=\"Unit Tests\"",
"test-integration": "vendor/bin/simple-phpunit --testsuite=\"Integration Tests\"",
"test-all": "vendor/bin/simple-phpunit --testsuite=\"All Tests\"",
"test-coverage": "vendor/bin/simple-phpunit --testsuite=\"Unit Tests\" --coverage-html coverage --coverage-clover coverage.xml",
"test-coverage-all": "vendor/bin/simple-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": "vendor/bin/phpstan analyse src --level=8 --configuration phpstan/symfony8-baseline.neon",
"analyse-legacy": "vendor/bin/phpstan analyse src --level=8 --configuration phpstan/symfony-legacy-baseline.neon"
},
"minimum-stability": "dev",
"prefer-stable": true
}