Files
service_dav/composer.json
T
2026-07-23 22:20:36 -04:00

29 lines
861 B
JSON

{
"name": "ktrix/service-dav",
"description": "WebDAV / CalDAV / CardDAV service module for Ktrix",
"type": "library",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=8.3",
"sabre/dav": "^4.7",
"sabre/vobject": "^4.5"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"config": {
"vendor-dir": "lib/vendor",
"optimize-autoloader": true,
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"KTXT\\ServiceDav\\Tests\\": "tests/php/"
}
},
"scripts": {
"test:unit": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Unit Tests\" --colors=always --testdox",
"test:integration": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Integration Tests\" --colors=always --testdox"
}
}