forked from tomusborne/wp-show-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.34 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
{
"name": "tomusborne/wp-show-posts",
"type": "wordpress-plugin",
"description": "Display posts anywhere using a shortcode.",
"keywords": [
"WordPress",
"Plugins"
],
"homepage": "https://github.com/tomusborne/wp-show-posts",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/tomusborne/wp-show-posts/graphs/contributors"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wptrt/wpthemereview": "^0.2.1",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"wp-cli/i18n-command": "^2.2.5"
},
"scripts": {
"php": [
"parallel-lint --exclude .git --exclude vendor .",
"phpcs -p . --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 5.2- --ignore=*/vendor/,*/node_modules/,*/admin/butterbean/tmpl"
],
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"make-pot": "wp i18n make-pot . langs/wp-show-posts.pot"
},
"support": {
"issues": "https://github.com/tomusborne/wp-show-posts/issues",
"source": "https://github.com/wp-show-posts/gp-premium"
}
}