summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2d5da56
--- /dev/null
+++ b/composer.json
@@ -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",
+ "sabre/dav": "^3.2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8"
+ },
+ "autoload": {
+ "psr-4": {
+ "SearchDAV\\": "src/",
+ "SearchDAV\\Test\\": "tests/"
+ }
+ }
+}