-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
32 lines (32 loc) · 1.18 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
{
"name": "studiopress/genesis-beta-tester",
"type": "wordpress-plugin",
"description": "This plugin lets you one-click update to the latest Genesis release, even if it's still in beta.",
"homepage": "https://github.com/studiopress/genesis-beta-tester",
"license": "GPL-2.0-or-later",
"require": {
"php": "^5.3 || ^7",
"composer/installers": "^1"
},
"require-dev": {
"php": "^5.6 || ^7",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "^3.3.1",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "^1"
},
"config": {
"sort-order": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcs": "phpcs --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./",
"phpcs-compat": "phpcs --extensions=php --standard=PHPCompatibilityWP --ignore=vendor/,node_modules/,assets/ --runtime-set testVersion 5.6- -p ./",
"phpcbf": "phpcbf --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./"
},
"support": {
"issues": "https://github.com/studiopress/genesis-beta-tester/issues",
"source": "https://github.com/studiopress/genesis-beta-tester"
}
}