-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
55 lines (55 loc) · 1.33 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
{
"name": "jolicode/asynit",
"description": "Asynchronous HTTP Request Testing Library for API or more...",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
}
],
"bin": [
"bin/asynit"
],
"autoload": {
"psr-4": {
"Asynit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Asynit\\Tests\\": "tests/"
}
},
"scripts": {
"test": "bin/asynit tests/"
},
"require": {
"php": "^8.2",
"amphp/amp": "^3.0",
"amphp/http-client": "^v5.0.1",
"amphp/sync": "^2.0",
"bovigo/assert": "^7.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
"amphp/http-client": "To use the web test case trait"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.53.0",
"phpstan/phpstan": "^1.10.67"
},
"conflict": {
"amphp/http-client": "<5.0.1",
"amphp/byte-stream": "<2.1",
"amphp/http": "<2.1",
"symfony/options-resolver": "<4.4.30 || <5.3 >= 5.0"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true
}
}