1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/composer.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2014-06-13 19:17:49 +02:00
{
2014-09-23 22:47:55 +02: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 19:17:49 +02:00
"license": "MIT",
"authors": [
{
"name": "Chris Wright",
2015-08-02 04:18:44 +02: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"
2017-06-24 07:50:34 +02:00
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2014-06-13 19:17:49 +02:00
}
],
"require": {
2016-08-13 19:12:51 +02:00
"php": ">=7.0",
"amphp/amp": "^2",
2017-06-24 07:50:34 +02:00
"amphp/byte-stream": "^1.1",
"amphp/cache": "^1",
"amphp/file": "^0.2",
2017-06-23 07:34:11 +02:00
"amphp/parser": "^1",
"amphp/uri": "^0.1",
"amphp/windows-registry": "^0.3",
"daverandom/libdns": "^1"
2014-06-13 19:17:49 +02: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-06-13 19:17:49 +02:00
"autoload": {
"psr-4": {
2014-09-24 19:31:27 +02:00
"Amp\\Dns\\": "lib"
2015-07-28 03:53:44 +02:00
},
2015-08-02 04:18:44 +02:00
"files": [
"lib/functions.php"
]
2017-06-29 12:36:09 +02:00
},
"autoload-dev": {
"psr-4": {
"Amp\\Dns\\Test\\": "test"
}
2014-06-13 19:17:49 +02:00
}
}