-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 2.51 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "fansipan/peak",
"description": "A simple and efficient solution for concurrently sending HTTP requests using PSR-18 client implementations.",
"keywords": [
"concurrently",
"pool",
"http",
"request",
"response",
"concurrent-requests",
"parallel-requests",
"async",
"await"
],
"homepage": "https://github.com/phanxipang/peak",
"license": "MIT",
"authors": [
{
"name": "Lynh",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"amphp/pipeline": "^1.0",
"azjezz/psl": "^2.7",
"clue/mq-react": "^1.6",
"fansipan/mock-client": "^1.0",
"friendsofphp/php-cs-fixer": "^3.15",
"guzzlehttp/guzzle": "^7.5",
"fansipan/fansipan": "^0.6",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0",
"react/async": "^4.1",
"react/http": "^1.9",
"symfony/http-client": "^6.3"
},
"autoload": {
"psr-4": {
"Fansipan\\Peak\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fansipan\\Peak\\Tests\\": "tests"
}
},
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse"
],
"bench": [
"./vendor/bin/phpbench run --report=all --progress=blinken"
],
"cs": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"vendor/bin/phpunit"
],
"coverage": [
"vendor/bin/phpunit --coverage"
],
"check": [
"@cs --dry-run",
"@analyse",
"@test"
]
},
"suggest": {
"php-http/discovery": "Provides a convenient solution for auto-discovery and auto-installation of well-known implementations of PSR-17 (HTTP Factories), PSR-18 (HTTP Clients)",
"azjezz/psl": "Required for the PSL driver",
"clue/mq-react": "Required for the ReactPHP driver",
"react/async": "Required for the ReactPHP driver"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}