This commit is contained in:
Robin Appelman 2017-01-31 14:49:11 +01:00
commit a74bfec383
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
composer.lock
vendor

24
composer.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "icewind/searchdav",
"description": "sabre/dav plugin to implement rfc5323 SEARCH",
"license": "AGPL",
"authors": [
{
"name": "Robin Appelman",
"email": "robin@icewind.nl"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"sabre/dav": "^3.2.0"
},
"autoload": {
"psr-4": {
"SearchDAV\\": "src/",
"SearchDAV\\Test\\": "tests/"
}
}
}