-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.28 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
{
"name": "yoast/yoastseo-amp",
"description": "This plugin makes sure the default WordPress AMP plugin uses the proper Yoast SEO metadata and allows modification of the AMP page design.",
"keywords": [
"wordpress",
"seo",
"amp"
],
"homepage": "https://wordpress.org/plugins/glue-for-yoast-seo-amp/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Team Yoast",
"email": "[email protected]",
"homepage": "https://yoast.com"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/Yoast/yoastseo-amp/issues",
"forum": "https://wordpress.org/support/plugin/glue-for-yoast-seo-amp",
"source": "https://github.com/Yoast/yoastseo-amp"
},
"require": {
"php": ">=5.6",
"composer/installers": "^1.5"
},
"require-dev": {
"yoast/yoastcs": "^2.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"config-yoastcs": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --config-set default_standard Yoast"
],
"check-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs"
],
"fix-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
]
}
}