1
0
mirror of https://github.com/danog/dns.git synced 2025-01-23 05:51:11 +01:00
dns/composer.json
2015-08-01 22:38:25 -04:00

39 lines
985 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/filesystem": "dev-master",
"daverandom/libdns": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4.0",
"fabpot/php-cs-fixer": "~1.9",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Amp\\Dns\\": "lib"
},
"files": [
"lib/constants.php",
"lib/functions.php"
]
}
}