-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 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
{
"name": "samiahmedsiddiqui/prevent-xss-vulnerability",
"description": "Secure your website from XSS Attacks.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"xss",
"vulnerability"
],
"homepage": "https://wordpress.org/plugins/prevent-xss-vulnerability/",
"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/prevent-xss-vulnerability/issues",
"forum": "https://wordpress.org/support/plugin/prevent-xss-vulnerability/",
"source": "https://github.com/samiahmedsiddiqui/prevent-xss-vulnerability"
},
"require": {
"php": "^5.6 || ^7.0",
"composer/installers": "^1.11.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.1",
"wp-coding-standards/wpcs": "^2.3.0"
},
"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
}
}
}