-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcomposer.json
67 lines (67 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
{
"name": "confirm-it-solutions/php-zabbix-api",
"type": "library",
"description": "PhpZabbixApi library",
"keywords": [
"zabbix",
"sdk",
"api",
"json",
"rpc",
"client"
],
"homepage": "https://github.com/confirm/PhpZabbixApi",
"license": "MIT",
"authors": [
{
"name": "Dominique Barton",
"email": "[email protected]",
"homepage": "http://www.confirm.ch",
"role": "Developer"
},
{
"name": "Javier Spagnoletti",
"email": "[email protected]",
"homepage": "https://github.com/phansys",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5 || ^7.3",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"symfony/cache": "^3.4 || ^4.4 || ^5.2",
"symfony/phpunit-bridge": "^5.2"
},
"suggest": {
"ext-curl": "Required for sending concurrent requests.",
"ext-posix": "Used to get the real user ID of the current process.",
"lib-curl": "Version >= 7.19.4 compiled with OpenSSL and zlib is required for sending concurrent requests."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Confirm\\ZabbixApi\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Confirm\\ZabbixApi\\Tests\\": [
"tests/"
]
}
}
}