-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 1.42 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
{
"name": "tomusborne/amp-for-generatepress",
"type": "wordpress-plugin",
"description": "Make GeneratePress compatibile with the official AMP plugin.",
"keywords": [
"WordPress",
"Plugins"
],
"homepage": "https://github.com/tomusborne/amp-for-generatepress",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/tomusborne/amp-for-generatepress/graphs/contributors"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-parallel-lint/php-parallel-lint": "^1.2.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/,*sites/",
"phpcs -p ./sites/ --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 5.4-"
],
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"make-pot": "wp i18n make-pot . langs/amp-for-generatepress.pot"
},
"support": {
"issues": "https://github.com/tomusborne/amp-for-generatepress/issues",
"source": "https://github.com/tomusborne/amp-for-generatepress"
}
}