-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.66 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
50
51
52
53
{
"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.4 || ^7.0",
"composer/installers": "^1.7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"lint": "find . -path ./app/vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v 'No syntax errors detected')",
"phpcs": "phpcs",
"phpcs-source": "phpcs --report=source",
"phpcs-summary": "phpcs --report=summary",
"phpcs-errors": "phpcs -n",
"phpcs-errors-source": "@check-cs-source -n",
"phpcs-errors-summary": "@check-cs-summary -n",
"phpcbf": "phpcbf"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}