-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (39 loc) · 1.01 KB
/
composer.json
File metadata and controls
47 lines (39 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
45
46
47
{
"name": "serps/proxy-server",
"description": "HTTP and SOCKS proxy server api",
"type": "library",
"keywords": ["http", "socks", "proxy"],
"homepage": "https://github.com/serps/proxy-server",
"license": "Fair",
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"Serps\\ProxyServer\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Serps\\ProxyServer\\Test\\": "test/suites"
}
},
"require": {
"php": ">=5.5.9",
"clue/socks-react": "^0.4.0",
"react/http": "dev-streaming-multipart#b888423ea0ee65e89868c677b97f03bc66b176ae"
},
"require-dev":{
"phpunit/phpunit": "4.1.2",
"squizlabs/php_codesniffer": "~2.5",
"symfony/process": "^3.0"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.dist.xml && echo \"\\n>> Checking code standards\\n\" && test/bin/phpcs.bash emacs",
"csfix": "test/bin/phpcbf.bash",
"cscheck": "test/bin/phpcs.bash emacs"
}
}