-
Notifications
You must be signed in to change notification settings - Fork 81
/
composer.json
59 lines (59 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "codeinwp/wp-maintenance-mode",
"description": "Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.",
"type": "wordpress-plugin",
"version": "2.6.14",
"license": "GPL-2.0+",
"homepage": "https://themeisle.com",
"support": {
"source": "https://github.com/codeinwp/WP-Maintenance-Mode",
"forum": "https://wordpress.org/support/plugin/wp-maintenance-mode/",
"issues": "https://github.com/codeinwp/WP-Maintenance-Mode/issues"
},
"authors": [
{
"name": "Themeisle",
"homepage": "https://themeisle.com/"
}
],
"require": {
"codeinwp/themeisle-sdk": "^3.3",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main",
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "*"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "5.6"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"keywords": [
"maintenance",
"WordPress",
"plugin"
],
"scripts": {
"format": "./vendor/bin/phpcbf --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 7.0- ",
"format-fix-exit": "./vendor/bin/phpcbf-fix-exit-0 --standard=phpcs.xml --report-summary --report-source -s --runtime-set testVersion 7.0- ",
"phpcs": "phpcs --standard=phpcs.xml -s --runtime-set testVersion 7.0-",
"lint": "composer run-script phpcs",
"phpcs-i": "phpcs -i",
"phpunit": "phpunit"
}
}