mirror of
https://github.com/danog/LibDNSNative.git
synced 2024-11-26 12:04:40 +01:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "danog/libdns-native",
|
|
"homepage": "https://github.com/danog/libdns-natie",
|
|
"description": "Encoder/decoder for PHP's dns_get_record raw format based on libdns",
|
|
"keywords": [
|
|
"dns",
|
|
"message",
|
|
"dns_get_record",
|
|
"php",
|
|
"native function"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [{
|
|
"name": "Daniil Gentili",
|
|
"email": "daniil@daniil.it"
|
|
},
|
|
{
|
|
"name": "Chris Wright",
|
|
"email": "addr@daverandom.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"daverandom/libdns": "^2.0.1"
|
|
},
|
|
"require-dev": {
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
"phpunit/phpunit": "^6"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"danog\\LibDNSNative\\": "lib"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"danog\\LibDNSNative\\Test\\": "test"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs",
|
|
"@test"
|
|
],
|
|
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
|
|
}
|
|
}
|