-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.36 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
{
"name": "studiopress/genesis-simple-faq",
"type": "wordpress-plugin",
"description": "A plugin for the Genesis Framework to manage FAQ components via shortcodes.",
"homepage": "https://github.com/studiopress/genesis-simple-faq",
"license": "GPL-2.0-or-later",
"require": {
"php": "^5.6 || ^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",
"wp-cli/i18n-command": "^2.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 ./",
"makepot": "wp i18n make-pot . languages/genesis-simple-faq.pot --headers='{ \"Report-Msgid-Bugs-To\": \"StudioPress <translations@studiopress.com>\" }' --exclude=bin/ --quiet"
},
"support": {
"issues": "https://github.com/studiopress/genesis-simple-faq/issues",
"source": "https://github.com/studiopress/genesis-simple-faq"
}
}