-
-
Notifications
You must be signed in to change notification settings - Fork 404
/
Copy pathcomposer.json
83 lines (83 loc) · 3.46 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"_copyright": {
"01": "+-------------------------------------------------------------------------+",
"02": "| Copyright (C) 2004-2023 The Cacti Group |",
"03": "| |",
"04": "| This program is free software; you can redistribute it and/or |",
"05": "| modify it under the terms of the GNU General Public License |",
"06": "| as published by the Free Software Foundation; either version 2 |",
"07": "| of the License, or (at your option) any later version. |",
"08": "| |",
"09": "| This program is distributed in the hope that it will be useful, |",
"10": "| but WITHOUT ANY WARRANTY; without even the implied warranty of |",
"11": "| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |",
"12": "| GNU General Public License for more details. |",
"13": "+-------------------------------------------------------------------------+",
"14": "| Cacti: The Complete RRDtool-based Graphing Solution |",
"15": "+-------------------------------------------------------------------------+",
"16": "| This code is designed, written, and maintained by the Cacti Group. See |",
"17": "| about.php and/or the AUTHORS file for specific developer information. |",
"18": "+-------------------------------------------------------------------------+",
"19": "| http://www.cacti.net/ |",
"20": "+-------------------------------------------------------------------------+"
},
"name": "cacti/cacti",
"description": "Cacti Network Monitoring Framework",
"type": "composer-plugin",
"license": "GPL2",
"require": {
"php": ">=8.0",
"ext-PDO": "*",
"ext-Phar": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-gmp": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-ldap": "*",
"ext-mbstring": "*",
"ext-mysqlnd": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-pdo_mysql": "*",
"ext-posix": "*",
"ext-sockets": "*",
"ext-sqlite3": "*",
"ext-xml": "*",
"greew/oauth2-azure-provider": "^2.0",
"hayageek/oauth2-yahoo": "^2.0",
"league/oauth2-client": "^2.7",
"league/oauth2-google": "^4.0",
"lipis/flag-icons": "^6.11.0",
"php-mqtt/client": "^2.2",
"phpmailer/phpmailer": "^6.7.1",
"stevenmaguire/oauth2-keycloak": "^5.1",
"stevenmaguire/oauth2-microsoft": "^2.2"
},
"suggest": {
"friendsofphp/php-cs-fixer": "^3.13"
},
"authors": [
{
"name": "The Cacti Group",
"email": "[email protected]"
}
],
"funding": [
{
"url": "https://github.com/sponsors/Cacti",
"type": "github"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"vendor-dir": "./include/vendor"
},
"scripts": {
"lint": "phplint --no-cache src/",
"phpcsfixer": "php-cs-fixer fix --diff --dry-run --ansi",
"phpcsfixit": "php-cs-fixer fix --ansi"
}
}