summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-11-01 08:58:38 +0100
committerRemi Collet <remi@remirepo.net>2017-11-01 08:58:38 +0100
commit6a78d03208869b7f2c192092e4e7b089d5b36632 (patch)
treede00ac40eb56769d78780751b38762df6eb6629a /composer.json
New package
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/"
+ }
+ }
+}