-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 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
{
"name": "matchboxdesigngroup/matchbox-fire-protection",
"description": "The Matchbox Fire Protection plugin configures WordPress to better protect our clients' sites.",
"minimum-stability": "dev",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"matchbox"
],
"homepage": "https://github.com/matchboxdesigngroup/matchbox-fire-protection",
"license": ["GPL-2.0-or-later"],
"authors": [
{
"name": "Matchbox",
"homepage": "https://matchboxdesigngroup.com/"
}
],
"autoload": {
"psr-4": {
"MatchboxFireProtection\\": "./includes/classes/"
}
},
"support": {
"issues": "https://github.com/matchboxdesigngroup/matchbox-fire-protection/issues",
"source": "https://github.com/matchboxdesigngroup/matchbox-fire-protection"
},
"require": {
"yahnis-elsts/plugin-update-checker": "4.13",
"bjeavons/zxcvbn-php": "^1.0"
},
"require-dev": {
"10up/phpcs-composer": "dev-master",
"10up/wpacceptance": "dev-master",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf ."
}
}