backupscript/composer.json

53 lines
1.7 KiB
JSON
Raw Normal View History

2023-05-26 11:47:40 +00:00
{
2023-07-11 12:36:27 +00:00
"name": "furyfire/backupscript",
"description": "Wrapper for Rclone based backup with push notifications",
2023-05-31 09:00:20 +00:00
"homepage": "https://jcktrue.dk",
2023-09-04 06:53:56 +00:00
"version": "0.1.1",
2023-05-26 11:47:40 +00:00
"require": {
"php": "^8.1",
"ext-date": "*",
"ext-SPL": "*",
"ext-json": "*",
2023-10-04 09:39:36 +00:00
"symfony/console": "^6.3.4",
"symfony/yaml": "^6.3.3",
"twig/twig": "^3.7.1",
"symfony/process": "^6.3.4",
"monolog/monolog": "^3.4",
"verifiedjoseph/ntfy-php-library": "^4.3",
"league/config": "^1.2",
"psr/log": "^3.0"
2023-05-26 11:47:40 +00:00
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
2023-05-26 12:14:21 +00:00
},
"require-dev": {
2023-10-04 09:39:36 +00:00
"phpunit/phpunit": "^10.3.5",
2024-03-21 09:39:44 +00:00
"phpmetrics/phpmetrics": "^2.8.2",
"rector/rector": "^1.0",
"vimeo/psalm": "^5.23",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.9"
2023-07-11 12:36:27 +00:00
},
"scripts": {
"test": "vendor/bin/phpunit tests --display-warnings",
2023-11-03 13:29:50 +00:00
"test-full": "vendor/bin/phpunit -c phpunit.full.xml",
2023-07-31 08:02:19 +00:00
"metrics": "vendor/bin/phpmetrics --report-html=output/metrics --junit=output/test.xml src/",
2024-02-07 11:00:08 +00:00
"docs": "phpDocumentor --setting=graphs.enabled=true",
2023-07-11 12:36:27 +00:00
"analyze": [
"@analyze-yaml",
"@analyze-phpmd",
"@analyze-phpstan",
"@analyze-psalm",
"@analyze-phpcs"
],
"analyze-yaml": "vendor/bin/yaml-lint *.yml .*.yml *.json",
2024-02-07 11:00:08 +00:00
"analyze-phpmd": "phpmd src,tests text cleancode,codesize,controversial,design,naming,unusedcode",
"analyze-phpstan":"phpstan",
"analyze-psalm": "psalm --no-cache",
"analyze-phpcs": "phpcs"
2023-05-26 11:47:40 +00:00
}
}