mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-23 02:28:15 +02:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "clue/http-proxy-react",
|
|
"description": "Async HTTP proxy connector, tunnel any TCP/IP-based protocol through an HTTP CONNECT proxy server, built on top of ReactPHP",
|
|
"keywords": ["HTTP", "CONNECT", "proxy", "ReactPHP", "async"],
|
|
"homepage": "https://github.com/clue/reactphp-http-proxy",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Christian Lück",
|
|
"email": "christian@clue.engineering"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3",
|
|
"react/promise": "^3 || ^2.1 || ^1.2.1",
|
|
"react/socket": "^1.12",
|
|
"ringcentral/psr7": "^1.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
|
|
"react/async": "^4 || ^3 || ^2",
|
|
"react/event-loop": "^1.2",
|
|
"react/http": "^1.5",
|
|
"react/promise-timer": "^1.10"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Clue\\React\\HttpProxy\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Clue\\Tests\\React\\HttpProxy\\": "tests/"
|
|
}
|
|
}
|
|
}
|