-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "szczyglis/php-ultra-small-proxy",
"description": "Lightweight proxy with full support for sessions, cookies, POST/FORM submissions, and URL rewriting.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/szczyglis-dev/php-ultra-small-proxy",
"autoload": {
"psr-4": {
"Szczyglis\\UltraSmallProxy\\": "src/"
}
},
"keywords": [
"proxy",
"client",
"web",
"networking",
"website",
"webproxy",
"crawler",
"rewrite",
"http",
"cookies"
],
"authors": [
{
"name": "szczyglis",
"email": "[email protected]",
"homepage": "https://szczyglis.dev"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2.5|^8.0",
"ext-curl": "*",
"ext-xml": "*"
}
}