-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·56 lines (56 loc) · 1.45 KB
/
composer.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.45 KB
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
{
"name": "zimbra-api/upload-api",
"type": "library",
"description": "PHP wrapper library around the Zimbra upload service",
"keywords": ["library", "upload client", "Zimbra upload"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nguyen Van Nguyen",
"email": "nguyennv1981@gmail.com",
"homepage": "https://github.com/nguyennv"
}
],
"require": {
"php": "^8.1",
"psr-discovery/http-client-implementations": "^1.0",
"psr-discovery/http-factory-implementations": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"fakerphp/faker": "^1.0",
"nyholm/psr7": "^1.0",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0"
},
"suggest": {
"guzzlehttp/guzzle": "Required if you like to use Guzzle PSR-18 HTTP Client & PSR-7 HTTP message factories"
},
"autoload": {
"psr-4": {
"Zimbra\\Upload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zimbra\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}