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

47 lines
1.1 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",
"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": {
2014-09-23 22:47:55 +02:00
"php": ">=5.5.0",
2014-09-24 06:13:50 +02:00
"amphp/amp": "~0.11",
2014-09-23 22:47:55 +02:00
"daverandom/libdns": "~0.2"
2014-06-13 19:17:49 +02:00
},
2014-09-23 22:47:55 +02:00
"repositories": [
{
"type": "vcs",
"url": "https://github.com/amphp/amp.git"
},
{
"type": "vcs",
"url": "https://github.com/amphp/dns.git"
}
],
"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-23 22:47:55 +02:00
"Amp\\": "lib"
2014-06-13 19:17:49 +02:00
}
2014-09-23 22:47:55 +02:00
},
"autoload-dev": {
"psr-4": {
"Amp\\Test\\": "test/"
},
"files": ["test/Dns/bootstrap.php"]
2014-06-13 19:17:49 +02:00
}
}