summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 2d5da560d0d6af3b2d0ed58596989af60bbc452e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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/"
		}
	}
}