1
0
mirror of https://github.com/danog/dns.git synced 2025-01-22 21:41:11 +01:00
dns/composer.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2014-06-13 18:17:49 +01:00
{
2014-09-23 16:47:55 -04:00
"name": "amphp/dns",
"homepage": "https://github.com/amphp/dns",
2015-08-01 22:18:44 -04:00
"description": "Async DNS resolution built on the amp concurrency framework",
2015-09-18 02:49:06 +02:00
"keywords": [
"dns",
"resolve",
"client",
"async",
"amp"
],
2014-06-13 18:17:49 +01:00
"license": "MIT",
"authors": [
{
"name": "Chris Wright",
2015-08-01 22:18:44 -04:00
"email": "addr@daverandom.com"
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
2015-09-18 02:49:06 +02:00
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2014-06-13 18:17:49 +01:00
}
],
"require": {
2015-05-20 15:30:20 -04:00
"php": ">=5.5",
2015-07-27 10:32:35 -04:00
"amphp/amp": "^1",
"amphp/cache": "^0.1",
"amphp/file": "^0.1",
"amphp/windows-registry": "^0.2.2",
"daverandom/libdns": "^1"
2014-06-13 18:17:49 +01:00
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.1.3",
"phpunit/php-code-coverage": ">=2.2",
"friendsofphp/php-cs-fixer": "^1.9"
},
2014-06-13 18:17:49 +01:00
"autoload": {
"psr-4": {
2014-09-24 13:31:27 -04:00
"Amp\\Dns\\": "lib"
2015-07-27 21:53:44 -04:00
},
2015-08-01 22:18:44 -04:00
"files": [
"lib/constants.php",
"lib/functions.php"
]
2014-06-13 18:17:49 +01:00
}
}