-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
30 lines (30 loc) · 872 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "grale/webdav",
"description": "A simple PHP WebDAV client and stream wrapper",
"keywords": ["PHP","WebDAV","Stream","Wrapper"],
"homepage": "https://github.com/gletournel/WebDAV",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Geoffroy Letournel",
"email": "geoffroy.letournel@gmail.com"
}
],
"require": {
"php": ">=5.3.0",
"guzzle/http": "~3.0",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0"
},
"suggest": {
"monolog/monolog": "Adds support for logging HTTP requests and responses",
"symfony/finder": "Allows you to more easily filter the files that the stream wrapper returns"
},
"autoload": {
"psr-0": {"Grale\\WebDav": "src/"}
}
}