{ "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 5 src" } }