prepare cleanup

This commit is contained in:
tracer 2024-04-07 11:15:32 +02:00
parent 192a5a2234
commit 4189d35c09
5 changed files with 12 additions and 14 deletions

View File

@ -84,7 +84,7 @@
<path value="$PROJECT_DIR$/vendor/symfony/deprecation-contracts" />
</include_path>
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="8.1">
<component name="PhpProjectSharedConfiguration" php_language_level="8.2">
<option name="suggestChangeDefaultLanguageLevel" value="false" />
</component>
<component name="PhpStanOptionsConfiguration">

View File

@ -7,7 +7,7 @@
7. [Conclusion](#7-conclusion)
Don't use this code right now.
Use the latest release instead.
You can try 1.0.2, but it's not well tested.
NOTICE: This documentation is not current as of September 2022.

View File

@ -2,7 +2,7 @@
"name": "24unix/bindapi",
"description": "manage Bind9 DNS server via REST API",
"version": "2023.0.1",
"build_number": "325",
"build_number": "326",
"authors": [
{
"name": "Micha Espey",
@ -14,7 +14,7 @@
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",

16
composer.lock generated
View File

@ -4,20 +4,20 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "83b98aa9bc1537b6a1a56c17535e2493",
"content-hash": "01083bcdf701c6a421d22feaa6c865c8",
"packages": [
{
"name": "arubacao/tld-checker",
"version": "1.2.226",
"version": "1.2.227",
"source": {
"type": "git",
"url": "https://github.com/arubacao/tld-checker.git",
"reference": "de4f3e308cdf7705012279113909ad79b2588529"
"reference": "aee43babd8548eb407923002a5c978d9a95ec409"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/arubacao/tld-checker/zipball/de4f3e308cdf7705012279113909ad79b2588529",
"reference": "de4f3e308cdf7705012279113909ad79b2588529",
"url": "https://api.github.com/repos/arubacao/tld-checker/zipball/aee43babd8548eb407923002a5c978d9a95ec409",
"reference": "aee43babd8548eb407923002a5c978d9a95ec409",
"shasum": ""
},
"require": {
@ -65,9 +65,9 @@
],
"support": {
"issues": "https://github.com/arubacao/tld-checker/issues",
"source": "https://github.com/arubacao/tld-checker/tree/1.2.226"
"source": "https://github.com/arubacao/tld-checker/tree/1.2.227"
},
"time": "2024-03-31T04:01:09+00:00"
"time": "2024-04-07T04:01:17+00:00"
},
{
"name": "laravel/serializable-closure",
@ -3313,7 +3313,7 @@
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
"php": ">=8.1",
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",

View File

@ -13,13 +13,11 @@ require dirname(path: __DIR__, levels: 2) . '/vendor/autoload.php';
$shortOpts = 'v::'; // version
$shortOpts .= 'q::'; // quiet
$shortOpts .= "V::"; // verbose
$shortOpts .= "h::"; // help
$longOpts = [
'version::',
'quiet::',
'verbose::',
'help::'
];