-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 868 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
{
"name": "edgetelemetrics/reactphp-dns-over-https-client",
"description": "A ReactPHP/DNS Executor to resolve DNS queries over HTTPS, providing secure DNS resolution over untrusted or shared networks (eg Serverless deployments) utilising standard HTTPS queries.",
"minimum-stability": "stable",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "James Lucas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"react/http": "^1.6",
"react/dns": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"suggest": {
"ext-sodium": "LibSodium Base64 URL Safe Encoding"
},
"autoload": {
"psr-4": {
"EdgeTelemetrics\\React\\Dns\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EdgeTelemetrics\\React\\Dns\\Tests\\": "tests/"
}
}
}