forked from zimbra-api/soap-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "put/zimbra-api",
"type": "library",
"description": "PHP wrapper library around the Zimbra Soap API (web service)",
"keywords": ["library", "soap", "web service", "client", "Zimbra API"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nguyen Van Nguyen",
"email": "[email protected]",
"homepage": "https://github.com/nguyennv"
}
],
"require": {
"php": ">=5.5.0",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-json": "*",
"evenement/evenement": "~2.0",
"guzzlehttp/guzzle": "7.*",
"phpcollection/phpcollection": "0.*"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"fzaninotto/faker": "~v1.5.0"
},
"autoload": {
"psr-4": {
"Zimbra\\": "src/Zimbra"
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}