1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/composer.json
Bob Weinand ebb5fb510c Switch to a new API to enable getting not only the first entry and not only A/AAAA records
This now can do queries to dns servers and you'll get the list of raw records in an array
2015-09-08 17:27:33 +02:00

38 lines
929 B
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"
}
],
"require": {
"php": ">=5.5",
"amphp/amp": "^1",
"amphp/cache": "dev-master",
"amphp/file": "dev-master",
"daverandom/libdns": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "~1.9"
},
"autoload": {
"psr-4": {
"Amp\\Dns\\": "lib"
},
"files": [
"lib/constants.php",
"lib/functions.php"
]
}
}