Some checks are pending
CI / PHP Lint (push) Waiting to run
CI / PHP Lint-1 (push) Waiting to run
CI / Unit Tests & Static Analysis (push) Waiting to run
CI / PHP Lint (pull_request) Waiting to run
CI / PHP Lint-1 (pull_request) Waiting to run
CI / Unit Tests & Static Analysis (pull_request) Waiting to run
- CI-Badge von github.com entfernt (zeigte ins Leere); stattdessen ein statisches Test-Badge und ein Link zum Repository - Clone-Befehl in der Installation auf git.loheide.cloud umgestellt - neuer Abschnitt "Repository & Mitwirken" mit HTTPS-/SSH-Adressen, Hinweis auf Issues und Pull Requests sowie der tea-CLI - vermerkt, dass .github/workflows von Forgejo Actions mitgelesen wird und docker-publish.yml (ghcr.io) noch aus der GitHub-Zeit stammt - klargestellt, dass der Auto-Updater unabhängig davon über update.loheide.eu läuft - Entwicklungs-Abschnitt nennt jetzt auch die CI-Prüfungen der Sprachdateien - composer.json: homepage, authors und support-Links ergänzt Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
32 lines
837 B
JSON
32 lines
837 B
JSON
{
|
|
"name": "friloo/unifi-voucher-tool",
|
|
"description": "Webbasiertes WLAN-Voucher-Management für UniFi OS",
|
|
"license": "MIT",
|
|
"homepage": "https://git.loheide.cloud/friloo/Unifi-Voucher-Tool",
|
|
"authors": [
|
|
{
|
|
"name": "Friederich Loheide",
|
|
"homepage": "https://loheide.eu"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://git.loheide.cloud/friloo/Unifi-Voucher-Tool/issues",
|
|
"source": "https://git.loheide.cloud/friloo/Unifi-Voucher-Tool"
|
|
},
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.6",
|
|
"phpstan/phpstan": "^1.11"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"stan": "phpstan analyse"
|
|
}
|
|
}
|