1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/composer.json
2017-06-29 12:36:09 +02:00

66 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",
"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"
}
}
}