1
0
mirror of https://github.com/danog/LibDNSJson.git synced 2024-11-30 04:19:14 +01:00
LibDNSJson/composer.json
2019-06-12 14:31:58 +02:00

52 lines
1.3 KiB
JSON

{
"name": "danog/libdns-json",
"homepage": "https://github.com/danog/libdns-json",
"description": "Encoder/decoder for google's JSON DNS message format based on libdns",
"keywords": [
"dns",
"doh",
"dns-over-https",
"https",
"json",
"libdns",
"message"
],
"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",
"ext-json": "*"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^6"
},
"autoload": {
"psr-4": {
"danog\\LibDNSJson\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"danog\\LibDNSJson\\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"
}
}