-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.09 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.09 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
{
"name": "astrahttp/http",
"description": "A high-performance, async-first HTTP client for PHP 8.2+ powered by CycleTLS. Features shared worker management, JA3/JA4 fingerprinting, and full streaming support.",
"keywords": [
"php",
"security",
"astrahttp",
"cycletls",
"async",
"http-client",
"ja3",
"fingerprint",
"scraping",
"amp",
"fiber",
"revolt-php",
"ja3-fingerprint",
"crawler"
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2",
"amphp/amp": "^3.0",
"amphp/byte-stream": "^2.1",
"amphp/websocket-client": "^2.0",
"revolt/event-loop": "^1.0"
},
"autoload": {
"psr-4": {
"Astra\\Http\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Astra\\Http\\Tests\\": "tests/"
}
},
"bin": [
"bin/astrahttp"
],
"authors": [
{
"name": "Ajmal Alkhaledi",
"email": "ajmalalkhaledi@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}