searchdav/composer.json
2026-07-15 14:33:01 +02:00

40 lines
910 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": ">=8.2",
"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": "^6.16.1",
"phpunit/phpunit": "^11"
},
"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",
"phpunit": "phpunit -c tests/phpunit.xml"
}
}