From 6a78d03208869b7f2c192092e4e7b089d5b36632 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 1 Nov 2017 08:58:38 +0100 Subject: New package --- composer.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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/" + } + } +} -- cgit