Files
backupscript/composer.json
Jens True 2710cc0a8f
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
Removing linting
2025-11-20 13:31:33 +00:00

54 lines
1.6 KiB
JSON

{
"name": "furyfire/backupscript",
"description": "Wrapper for Rclone based backup with push notifications",
"type": "project",
"homepage": "https://jcktrue.dk",
"license": "GPL-3.0-or-later",
"require": {
"php": "^8.4",
"ext-date": "*",
"ext-SPL": "*",
"ext-json": "*",
"symfony/console": "^6.4.27",
"symfony/yaml": "^6.4.26",
"twig/twig": "^3.22.0",
"symfony/process": "^6.4.26",
"monolog/monolog": "^3.9",
"verifiedjoseph/ntfy-php-library": "^4.7.2",
"league/config": "^1.2",
"psr/log": "^3.0.2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5.58",
"phpmetrics/phpmetrics": "^3.0-dev"
},
"scripts": {
"test": "vendor/bin/phpunit tests --display-warnings",
"all": [
"@test",
"@analyze",
"@metrics",
"@docs"
],
"metrics": "vendor/bin/phpmetrics --report-html=output/metrics --junit=output/test.xml src/",
"docs": "tools/phpdocumentor",
"analyze": [
"@analyze-yaml",
"@analyze-phpmd",
"@analyze-phpstan",
"@analyze-psalm",
"@analyze-phpcs"
],
"analyze-yaml": "vendor/bin/yaml-lint .",
"analyze-phpmd": "tools/phpmd src,tests text cleancode,codesize,controversial,design,naming,unusedcode",
"analyze-phpstan":"tools/phpstan",
"analyze-psalm": "tools/psalm --no-cache",
"analyze-phpcs": "tools/phpcs"
}
}