-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.91 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.91 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
73
{
"name": "four-bytes/four-http-client",
"description": "Modern PHP 8.4+ HTTP client factory and middleware library for API integrations",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "4 Bytes",
"email": "info@4bytes.de"
}
],
"keywords": [
"http",
"client",
"middleware",
"api",
"rate-limiting",
"psr-18",
"psr-7"
],
"require": {
"php": ">=8.4",
"psr/log": "^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"php-http/discovery": "^1.19",
"four-bytes/four-rate-limiting": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"nyholm/psr7": "^1.8",
"php-http/mock-client": "^1.6"
},
"suggest": {
"symfony/http-client": "PSR-18 HTTP client implementation (auto-detected via php-http/discovery)",
"guzzlehttp/guzzle": "Alternative PSR-18 HTTP client implementation",
"nyholm/psr7": "PSR-7 implementation (recommended for testing)"
},
"autoload": {
"psr-4": {
"Four\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Four\\Http\\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",
"phpstan-baseline": "phpstan analyse src --generate-baseline",
"quality": [
"@phpstan",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
}
}
}