forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 2.5 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
{
"_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": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpmailer/phpmailer": "^6.7"
},
"authors": [
{
"name": "The Cacti Group",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"lint": "phplint --no-cache src/",
"phpcsfixer": "php-cs-fixer fix --diff --dry-run --ansi",
"phpcsfixit": "php-cs-fixer fix --ansi"
}
}