-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 970 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 970 Bytes
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
{
"name": "uzdevid/conflux-http",
"description": "Conflux HTTP — This is a flexible architecture for integration with external HTTP services, built on the basis of the PSR-18 and Guzzle. Each request is made out as a separate class that implements the necessary interfaces, providing readability, testability and expansion.",
"type": "library",
"keywords": [
"php",
"http api",
"http client"
],
"license": "MIT",
"authors": [
{
"name": "Ibragimov Diyorbek",
"email": "uzdevid@gmail.com"
}
],
"require": {
"php": ">=8.3",
"guzzlehttp/guzzle": "^7.9",
"yiisoft/event-dispatcher": "^1.1",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"yiisoft/var-dumper": "^1.7",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"UzDevid\\Conflux\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UzDevid\\Conflux\\Http\\Tests\\": "tests"
}
}
}