-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.01 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "localzet/http",
"description": "Localzet HTTP Client is a library for making HTTP requests. It is developed by Ivan Zorin and uses modern technologies and standards for efficient and reliable HTTP communication.",
"type": "library",
"keywords": [
"HTTP",
"client",
"PHP",
"library",
"localzet",
"AGPL",
"curl",
"json",
"psr7",
"server"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "creator@localzet.com",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "support@localzet.com",
"issues": "https://github.com/localzet/HttpClient/issues",
"source": "https://github.com/localzet/HttpClient"
},
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"localzet/server": "^4.2",
"localzet/psr7": "^3.0",
"psr/http-message": "^2.0"
},
"autoload": {
"psr-4": {
"localzet\\HTTP\\": "src/"
}
}
}