-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 984 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
38
39
40
41
{
"name": "paxal/phproxy",
"type": "project",
"license": "MIT",
"description": "HTTP/HTTPS proxy that allows to redirect traffic",
"authors": [
{
"name": "Cyril Pascal",
"email": "cyril.pascal_github@m4x.org"
}
],
"require": {
"php": "8.0.x||8.1.x",
"react/event-loop": "^1.0",
"react/socket": "^1.1",
"symfony/console": "^6.0",
"symfony/http-foundation": "^6.0"
},
"autoload": {
"psr-4": {
"Paxal\\Phproxy\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Paxal\\Tests\\Phproxy\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "*"
},
"config": {
"sort-packages": true
}
}