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

37 lines
931 B
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",
"description": "Asynchronous DNS resolution built on the Amp concurrency framework",
"keywords": ["dns", "resolve", "client", "async", "amp"],
2014-06-13 19:17:49 +02:00
"license": "MIT",
"authors": [
{
"name": "Chris Wright",
"email": "addr@daverandom.com",
"role": "Creator / Lead Developer"
}
],
"require": {
2015-05-20 21:30:20 +02:00
"php": ">=5.5",
2015-07-27 16:32:35 +02:00
"amphp/amp": "^1",
2015-02-18 12:46:01 +01:00
"daverandom/libdns": "~1.0"
2014-06-13 19:17:49 +02:00
},
"require-dev": {
"mockery/mockery": ">=0.9.1",
"rdlowrey/auryn": ">=0.13.0",
2014-09-24 16:28:48 +02:00
"predis/predis": "~0.8.6",
"phpunit/phpunit": "~4.1.0"
},
2014-06-13 19:17:49 +02:00
"autoload": {
"psr-4": {
2014-09-24 19:31:27 +02:00
"Amp\\Dns\\": "lib"
2014-06-13 19:17:49 +02:00
}
2014-09-23 22:47:55 +02:00
},
"autoload-dev": {
"psr-4": {
2014-09-24 19:31:27 +02:00
"Amp\\Dns\\Test\\": "test/"
2014-09-23 22:47:55 +02:00
},
2014-09-24 19:31:27 +02:00
"files": ["test/bootstrap.php"]
2014-06-13 19:17:49 +02:00
}
}