mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "amphp/dns",
|
|
"homepage": "https://github.com/amphp/dns",
|
|
"description": "Async DNS resolution for Amp.",
|
|
"keywords": [
|
|
"dns",
|
|
"resolve",
|
|
"client",
|
|
"async",
|
|
"amp",
|
|
"amphp"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Chris Wright",
|
|
"email": "addr@daverandom.com"
|
|
},
|
|
{
|
|
"name": "Daniel Lowrey",
|
|
"email": "rdlowrey@php.net"
|
|
},
|
|
{
|
|
"name": "Bob Weinand",
|
|
"email": "bobwei9@hotmail.com"
|
|
},
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
},
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"amphp/amp": "^2",
|
|
"amphp/byte-stream": "^1.1",
|
|
"amphp/cache": "^1",
|
|
"amphp/file": "^0.2 || ^0.3",
|
|
"amphp/parser": "^1",
|
|
"amphp/uri": "^0.1",
|
|
"amphp/windows-registry": "^0.3",
|
|
"daverandom/libdns": "^1"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "^1",
|
|
"phpunit/phpunit": "^6",
|
|
"friendsofphp/php-cs-fixer": "^2.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Dns\\": "lib"
|
|
},
|
|
"files": [
|
|
"lib/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Dns\\Test\\": "test"
|
|
}
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.0.0"
|
|
}
|
|
}
|
|
}
|