-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "wikimedia/wikimedia-wordpress-security-plugin",
"version": "1.0.0",
"description": "Wikimedia WordPress Security Plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"composer/installers": "~1.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpcsstandards/php_codesniffer": "^3.5",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"wpackagist-plugin/disable-emojis": "^1.7.6",
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"lint": "phpcs --standard=phpcs.dist.xml plugin.php inc",
"lint:fix": "phpcbf --standard=phpcs.dist.xml plugin.php inc"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-types": [
"wordpress-plugin"
],
"installer-paths": {
"inc/bundled-plugins/disable-emojis": [
"wpackagist-plugin/disable-emojis"
]
}
}
}