-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json.bak
More file actions
72 lines (72 loc) · 1.78 KB
/
composer.json.bak
File metadata and controls
72 lines (72 loc) · 1.78 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": "four-bytes/four-marketplace-http-client",
"description": "Modern PHP 8.4+ HTTP client factory and middleware library for marketplace API integrations",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "4 Bytes",
"email": "info@4bytes.de"
}
],
"keywords": [
"http",
"client",
"middleware",
"marketplace",
"api",
"rate-limiting",
"amazon",
"ebay",
"discogs",
"bandcamp"
],
"require": {
"php": ">=8.4",
"symfony/http-client": "^7.2",
"symfony/rate-limiter": "^7.2",
"symfony/cache": "^7.2",
"psr/log": "^3.0",
"psr/cache": "^3.0",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"symfony/var-dumper": "^7.2",
"nyholm/psr7": "^1.8"
},
"autoload": {
"psr-4": {
"Four\\MarketplaceHttp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Four\\MarketplaceHttp\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src tests --level 8",
"phpstan-baseline": "phpstan analyse src tests --level 8 --generate-baseline",
"quality": [
"@phpstan",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}