mirror of
https://gh.wpcy.net/https://github.com/CaptainCore/captaincore-manager.git
synced 2026-04-18 08:42:15 +08:00
32 lines
746 B
JSON
32 lines
746 B
JSON
{
|
|
"name": "badcow/dns",
|
|
"description": "A PHP library for creating DNS zone files based on RFC1035",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Sam Williams",
|
|
"email": "sam@badcow.co"
|
|
}
|
|
],
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"php": "^8.0",
|
|
"rlanvin/php-ip": "^3.0",
|
|
"christian-riesen/base32": "^1.5.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.0",
|
|
"friendsofphp/php-cs-fixer": "^3.5.0",
|
|
"phpstan/phpstan": "^1.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Badcow\\DNS\\": "lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Badcow\\DNS\\Tests\\": "tests/"
|
|
}
|
|
}
|
|
}
|