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",
|
2017-06-17 10:49:54 +02:00
|
|
|
"description": "Async DNS resolution for Amp.",
|
2015-09-18 02:49:06 +02:00
|
|
|
"keywords": [
|
|
|
|
"dns",
|
|
|
|
"resolve",
|
|
|
|
"client",
|
|
|
|
"async",
|
2017-06-17 10:49:54 +02:00
|
|
|
"amp",
|
|
|
|
"amphp"
|
2015-09-18 02:49:06 +02:00
|
|
|
],
|
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"
|
2015-09-11 03:40:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Bob Weinand",
|
|
|
|
"email": "bobwei9@hotmail.com"
|
2015-09-18 02:49:06 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Niklas Keller",
|
|
|
|
"email": "me@kelunik.com"
|
2017-06-24 00:50:34 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Aaron Piotrowski",
|
|
|
|
"email": "aaron@trowski.com"
|
2014-06-13 18:17:49 +01:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2016-08-13 19:12:51 +02:00
|
|
|
"php": ">=7.0",
|
2017-06-17 08:31:35 +02:00
|
|
|
"amphp/amp": "^2",
|
2017-06-24 00:50:34 -05:00
|
|
|
"amphp/byte-stream": "^1.1",
|
2017-12-16 19:59:47 +01:00
|
|
|
"amphp/cache": "^1.2",
|
2017-12-15 17:02:47 +01:00
|
|
|
"amphp/file": "^0.2 || ^0.3",
|
2017-06-23 00:34:11 -05:00
|
|
|
"amphp/parser": "^1",
|
2017-06-24 00:49:25 +02:00
|
|
|
"amphp/uri": "^0.1",
|
2017-06-17 08:31:35 +02:00
|
|
|
"amphp/windows-registry": "^0.3",
|
2018-03-31 08:56:32 -07:00
|
|
|
"daverandom/libdns": "^2.0.1",
|
|
|
|
"ext-filter": "*"
|
2014-06-13 18:17:49 +01:00
|
|
|
},
|
2014-07-19 14:37:48 +01:00
|
|
|
"require-dev": {
|
2017-06-17 10:49:54 +02:00
|
|
|
"amphp/phpunit-util": "^1",
|
|
|
|
"phpunit/phpunit": "^6",
|
|
|
|
"friendsofphp/php-cs-fixer": "^2.3"
|
2014-07-19 14:37:48 +01:00
|
|
|
},
|
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/functions.php"
|
|
|
|
]
|
2017-06-29 12:36:09 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Amp\\Dns\\Test\\": "test"
|
|
|
|
}
|
2017-12-02 21:11:27 -06:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.0.0"
|
|
|
|
}
|
2014-06-13 18:17:49 +01:00
|
|
|
}
|
|
|
|
}
|