searchdav/composer.json
Carl Schwan 4ccbe75c73
refactor(phpstan): Bump phpstan level to 6
Signed-off-by: Carl Schwan <carlschwan@kde.org>
2026-07-15 11:02:57 +02:00

39 lines
870 B
JSON

{
"name": "icewind/searchdav",
"description": "sabre/dav plugin to implement rfc5323 SEARCH",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Robin Appelman",
"email": "robin@icewind.nl"
}
],
"require": {
"php": ">=7.3 || >=8.0",
"sabre/dav": "^4.0.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.0",
"friendsofphp/php-cs-fixer": "^2",
"phpstan/phpstan": "^2.2",
"psalm/phar": "^4.3",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"SearchDAV\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SearchDAV\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint --exclude src --exclude vendor --exclude target --exclude build .",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar",
"phpstan": "phpstan analyse --level 6 src"
}
}