forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
101 lines (101 loc) · 4.06 KB
/
composer.json
File metadata and controls
101 lines (101 loc) · 4.06 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"_comment": [
"+-------------------------------------------------------------------------+",
"| Copyright (C) 2004-2026 The Cacti Group |",
"| |",
"| This program is free software; you can redistribute it and/or |",
"| modify it under the terms of the GNU General Public License |",
"| as published by the Free Software Foundation; either version 2 |",
"| of the License, or (at your option) any later version. |",
"| |",
"| This program is distributed in the hope that it will be useful, |",
"| but WITHOUT ANY WARRANTY; without even the implied warranty of |",
"| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |",
"| GNU General Public License for more details. |",
"+-------------------------------------------------------------------------+",
"| Cacti: The Complete RRDtool-based Graphing Solution |",
"+-------------------------------------------------------------------------+",
"| This code is designed, written, and maintained by the Cacti Group. See |",
"| about.php and/or the AUTHORS file for specific developer information. |",
"+-------------------------------------------------------------------------+",
"| http://www.cacti.net/ |",
"+-------------------------------------------------------------------------+"
],
"name": "cacti/cacti",
"description": "Cacti Network Monitoring Framework",
"type": "composer-plugin",
"license": "GPL-2.0-only",
"require": {
"php": "^8.1",
"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": "^7.5.0",
"mikepultz/netdns2": "^2.0",
"php-mqtt/client": "^2.2",
"phpmailer/phpmailer": "^7.0.2",
"phpseclib/phpseclib": "^3.0",
"slim/slim": "^4.14",
"stevenmaguire/oauth2-keycloak": "^6.1.0",
"stevenmaguire/oauth2-microsoft": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.86",
"overtrue/phplint": "^9.6",
"phpstan/phpstan": "^2.1.21",
"pestphp/pest": "^2",
"pestphp/pest-plugin-drift": "^2.0",
"composer/xdebug-handler": "^3.0",
"rector/rector": "^2.1.2"
},
"scripts": {
"lint": "phplint --no-cache --exclude=include/vendor ",
"phpstan": "phpstan analyse --level 6 ",
"php-cs-fixer": "php-cs-fixer fix --allow-unsupported-php-version=yes --dry-run --diff --config=./.php-cs-fixer.php ",
"phpcsfixer": "@php-cs-fixer",
"php-cs-fixit": "php-cs-fixer fix ",
"test": "include/vendor/bin/pest --display-warnings"
},
"authors": [
{
"name": "The Cacti Group",
"email": "developers@cacti.net"
}
],
"funding": [
{
"url": "https://github.com/sponsors/Cacti",
"type": "github"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"vendor-dir": "./include/vendor",
"audit": {
"block-insecure": false
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}