-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
executable file
·58 lines (58 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "zimbra-api/soap-api",
"type": "library",
"description": "PHP wrapper library around the Zimbra Soap API",
"keywords": ["library", "soap client", "web service", "Zimbra API"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nguyen Van Nguyen",
"email": "[email protected]",
"homepage": "https://github.com/nguyennv"
}
],
"require": {
"php": "^8.1",
"jms/serializer": "^3.30",
"psr-discovery/http-client-implementations": "^1.0",
"psr-discovery/http-factory-implementations": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"fakerphp/faker": "^1.0"
},
"suggest": {
"guzzlehttp/guzzle": "Required if you like to use Guzzle PSR-18 HTTP Client & PSR-7 HTTP message factories",
"symfony/cache": "Required if you like to use Serializer Annotations & Metadata caching"
},
"autoload": {
"psr-4": {
"Zimbra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zimbra\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}