-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "benoitchantre/wp-composer-auto-updates",
"description": "Enables minor core auto updates even when DISALLOW_FILE_MODS is set to true.",
"type": "wordpress-muplugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Benoît Chantre",
"email": "mail@benoitchantre.com",
"homepage": "https://benoitchantre.com",
"role": "Developer"
}
],
"keywords": [
"wordpress",
"updates",
"composer"
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs"
],
"phpcbf": [
"./vendor/bin/phpcbf"
]
},
"suggest": {
"roots/bedrock-autoloader": "Bedrock Autoloader enables standard plugins to be required just like must-use plugins."
}
}