-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.29 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
{
"name": "cleantalk/firewall",
"description": "CleanTalk APBCT `SFW` classes",
"type": "cleantalk-apbct-lib",
"authors": [
{
"name": "CleanTalk Team",
"email": "support@cleantalk.org"
}
],
"license": "GPL-3.0-or-later",
"require": {
"cleantalk/apbct-installer": "*",
"cleantalk/mloader": "*",
"cleantalk/variables": "*",
"cleantalk/cleaner": "*",
"cleantalk/queue": "*",
"cleantalk/db": "*",
"cleantalk/dns": "*",
"cleantalk/api": "*",
"cleantalk/cron": "*",
"cleantalk/remote-calls": "*",
"cleantalk/storage-handler": "*",
"cleantalk/helper": "*",
"cleantalk/localize": "*"
},
"require-dev": {
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3"
},
"config": {
"allow-plugins": {
"cleantalk/apbct-installer": true
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration tests/phpunit.xml",
"vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"vendor/bin/phpcs --standard=tests/.phpcs.xml",
"vendor/bin/psalm --no-cache --config=tests/psalm.xml",
"vendor/bin/psalm --no-cache --config=tests/psalm.xml --taint-analysis"
]
}
}