-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·59 lines (59 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "noglitchyo/dealdoh",
"description": "A simple DNS over HTTPS proxy built on PHP.",
"keywords": [
"dns",
"dns-resolver",
"dns-over-https",
"doh",
"dns-proxy",
"dns-client",
"dns-crypt"
],
"license": "MIT",
"authors": [
{
"email": "maxime.elomari@gmail.com",
"name": "Maxime Elomari"
}
],
"require": {
"ext-json": "*",
"ext-sockets": "*",
"ext-sodium": "*",
"nyholm/psr7": "^1.1",
"php": "^7.3",
"psr/http-client": "*",
"psr/log": "^1.1",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"react/dns": "^1.3.0",
"paragonie/sodium_compat": "^1.13"
},
"require-dev": {
"react/datagram": "^1.5",
"phpunit/phpunit": "^8.1",
"mockery/mockery": "^1.2",
"monolog/monolog": "^1.24",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^0.11.8",
"symfony/process": "^5.1"
},
"autoload": {
"psr-4": {
"NoGlitchYo\\Dealdoh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NoGlitchYo\\Dealdoh\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse -l max src",
"phpcs": "phpcs --standard=PSR12 ./src/ ./tests",
"phpcbf": "phpcbf --standard=PSR12 ./src/ ./tests",
"test": "phpunit phpunit.dist.xml"
}
}