-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
47 lines (47 loc) · 1.4 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
{
"license" : "GPL-3.0",
"require": {
"smarty/smarty": "~3.1",
"smarty-gettext/smarty-gettext": "~1.4",
"ezyang/htmlpurifier": "~4.8",
"google/recaptcha": "~1.1",
"klein/klein": "~2.1",
"vlucas/valitron": "~1.2",
"phpmailer/phpmailer": "^6.5",
"pear/archive_tar": "~1.3",
"filp/whoops": "^2.1",
"php" : ">=7.2",
"ext-gd": "*",
"ext-zip": "*",
"ext-pdo": "*",
"ext-gettext": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-json": "*",
"ext-xml": "*",
"myclabs/php-enum": "^1.5",
"webmozart/assert": "^1.2",
"nategood/commando": "*"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpmd/phpmd" : "@stable",
"maximebf/debugbar": "1.*",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpstan/phpstan-webmozart-assert": "^0.11",
"squizlabs/php_codesniffer": "~3.0"
},
"autoload": {
"classmap": [
"include/",
"cron/src"
],
"files": ["include/functions.php", "include/xmlWrite.php"]
},
"scripts": {
"phpcs": "phpcs -s --standard=phpcs/ruleset.xml --ignore=vendor/ --extensions=php .",
"phpstan": "phpstan analyse -c phpstan/config.phpstan.neon ."
}
}