-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.07 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
{
"name": "cleantalk/spbct-heuristic-analyser",
"description": "CleanTalk SPBCT Heuristic Analyser classes",
"type": "cleantalk-spbct-scanner",
"authors": [
{
"name": "CleanTalk Team",
"email": "[email protected]"
}
],
"license": "GPL-3.0-or-later",
"require": {
"cleantalk/spbct-installer": "*",
"cleantalk/spbct-helpers": "*"
},
"require-dev": {
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3",
"yoast/phpunit-polyfills": "^1.0"
},
"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"
]
},
"autoload": {
"psr-4": {
"CleantalkSP\\Common\\Scanner\\HeuristicAnalyser\\": "/"
}
},
"config": {
"allow-plugins": {
"cleantalk/spbct-installer": true
}
}
}