-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
38 lines (38 loc) · 1.3 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
{
"name": "survanetwork/badwordblocker",
"description": "A Chat Filter which can block certain things",
"version": "2.0.3",
"type": "project",
"keywords": [
"chat",
"spam",
"pocketmine",
"filter",
"caps"
],
"homepage": "https://plugins.surva.net/#badwordblocker",
"license": "MIT",
"authors": [
{
"name": "Jarne",
"homepage": "https://github.com/jarne",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/survanetwork/BadWordBlocker/issues",
"source": "https://github.com/survanetwork/BadWordBlocker"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"pocketmine/pocketmine-mp": "^5.4",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"code-analyze": "./vendor/bin/phpstan analyze -c phpstan.neon",
"code-analyze-save-report": "./vendor/bin/phpstan analyze -c phpstan.neon --error-format junit > test-results/phpstan-result/junit.xml",
"check-format": "./vendor/bin/phpcs --standard=PSR12 src",
"check-format-save-report": "./vendor/bin/phpcs --standard=PSR12 --report=junit src > test-results/phpcs-result/junit.xml",
"fix-format": "./vendor/bin/phpcbf --standard=PSR12 src"
}
}