-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
27 lines (27 loc) · 936 Bytes
/
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
{
"require": {
"cleantalk/firewall": "*",
"cleantalk/antispam": "*"
},
"config": {
"allow-plugins": {
"cleantalk/apbct-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "@dev"
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration CleanTalk/tests/phpunit.xml",
"vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"vendor/bin/phpcs --standard=CleanTalk/tests/.phpcs.xml",
"vendor/bin/psalm --no-cache --config=CleanTalk/tests/psalm.xml",
"vendor/bin/psalm --no-cache --config=CleanTalk/tests/psalm.xml --taint-analysis"
]
}
}