mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "amphp/dns",
|
|
"homepage": "https://github.com/amphp/dns",
|
|
"description": "Async DNS resolution built on the amp concurrency framework",
|
|
"keywords": [
|
|
"dns",
|
|
"resolve",
|
|
"client",
|
|
"async",
|
|
"amp"
|
|
],
|
|
"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"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"amphp/amp": "^2.0",
|
|
"amphp/cache": "dev-amp_v2 as 0.2",
|
|
"amphp/file": "dev-amp_v2 as 0.2",
|
|
"amphp/windows-registry": "dev-amp_v2 as 0.3",
|
|
"daverandom/libdns": "^1"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.2.8",
|
|
"friendsofphp/php-cs-fixer": "^1.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Dns\\": "lib"
|
|
},
|
|
"files": [
|
|
"lib/constants.php",
|
|
"lib/functions.php"
|
|
]
|
|
}
|
|
}
|