-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1011 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
28
29
30
31
32
33
34
35
36
37
{
"name": "killshot13/botmeister",
"description": "Uses an algorithm based on the TypingDNA API to destroy blog comment spam with amazing precision and accuracy.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "killshot13",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"composer/installers": "^2.0"
},
"require-dev": {
"xwp/wp-dev-lib": "^1.6",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"brainmaestro/composer-git-hooks": "^2.8"
},
"extra": {
"hooks": {
"pre-commit": "/vendor/xwp/wp-dev-lib/scripts/pre-commit"
}
},
"scripts": {
"post-install-cmd": [
"/vendor/bin/cghooks add --no-lock"
],
"post-update-cmd": [
"/vendor/bin/cghooks update"
]
}
}