-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "webkima/lock-bad-user",
"description": "With this plugin you can block bad users without deleting their accounts.",
"license": "GPL-2.0+",
"type": "wordpress-plugin",
"authors": [
{
"name": "Nabi",
"email": "[email protected]"
}
],
"support": {
"src": "https://github.com/navidabdi/lock-bad-user",
"issues": "https://github.com/navidabdi/lock-bad-user/issues"
},
"require": {
"php": ">=7.4",
"php-di/php-di": "^6.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.9",
"brain/monkey": "^2",
"inpsyde/php-coding-standards": "^1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Webkima\\LockBadUser\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"Webkima\\LockBadUser\\Tests\\Unit\\": "tests/Unit/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs:check": "vendor/bin/phpcs",
"phpcs:fix": "vendor/bin/phpcbf",
"test:unit": "phpunit --config=phpunit.xml"
}
}