mirror of
https://codeberg.org/icewind/SearchDAV.git
synced 2026-08-02 12:14:54 +02:00
And fix the issue found by the new version. $uri === '' was always false at that point. Signed-off-by: Carl Schwan <carlschwan@kde.org>
39 lines
870 B
JSON
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 5 src"
|
|
}
|
|
}
|