-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.43 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
48
49
{
"name": "samiahmedsiddiqui/http-auth",
"description": "Helps you to secure your whole site on the development time and admin pages from the Brute attack.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"auth",
"http-auth",
"brute-force-attacks"
],
"homepage": "https://wordpress.org/plugins/http-auth/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sami Ahmed Siddiqui",
"email": "sami.siddiqui@yasglobal.com",
"homepage": "https://www.yasglobal.com/",
"role": "Developer"
}
],
"support": {
"email": "sami.siddiqui@yasglobal.com",
"issues": "https://github.com/samiahmedsiddiqui/http-auth/issues",
"forum": "https://wordpress.org/support/plugin/http-auth/",
"source": "https://github.com/samiahmedsiddiqui/http-auth"
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"composer/installers": "2.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.11.2",
"wp-coding-standards/wpcs": "3.1.0",
"phpcompatibility/phpcompatibility-wp": "2.1.5"
},
"scripts": {
"format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --report=summary,source",
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:summary": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report=summary",
"lint:errors": "@lint -n"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}