forked from leproxy/leproxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.06 KB
/
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
38
39
40
{
"name": "leproxy/leproxy",
"type": "project",
"description": "LeProxy is the HTTP/SOCKS proxy server for everybody!",
"keywords": ["LeProxy", "HTTP proxy", "SOCKS proxy", "HTTPS proxy", "proxy server", "async", "reactphp"],
"homepage": "http://leproxy.org/",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"require": {
"php": ">=5.4",
"clue/commander": "^1.3",
"clue/connection-manager-extra": "^1.1",
"clue/http-proxy-react": "^1.4",
"clue/socks-react": "^1.0",
"react/http": "^0.8.3",
"react/http-client": "^0.5.9",
"react/socket": "^1.1"
},
"require-dev": {
"clue/block-react": "^1.3",
"phpunit/phpunit": "^4.8",
"react/promise-stream": "^1.0 || ^0.1.1"
},
"bin": [
"leproxy.php"
],
"config": {
"platform": {
"php": "5.4"
}
},
"autoload": {
"psr-4": { "LeProxy\\LeProxy\\": "src/"}
}
}