-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 970 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 970 Bytes
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
{
"name": "prakash/php-socks-server",
"type": "project",
"description": "PHP SOCKS Server",
"keywords": [
"php socks server",
"socks proxy",
"proxy server",
"php socks"
],
"homepage": "https://github.com/prakash/php-socks-server",
"license": "MIT",
"authors": [
{
"name": "Prakash Thapa",
"email": "thapa.me@gmail.com",
"homepage": "https://github.com/prakash"
}
],
"require": {
"php": ">=8.2",
"clue/socks-react": "^1.4",
"symfony/console": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^7.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Prakash\\SocksServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Prakash\\SocksServer\\Tests\\": "tests/"
}
}
}