forked from Yoast/wordpress-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "yoast/wordpress-seo",
"description": "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.",
"keywords": [
"wordpress",
"seo"
],
"homepage": "https://yoa.st/1ui",
"license": "GPL-2.0+",
"authors": [
{
"name": "Team Yoast",
"email": "[email protected]",
"homepage": "https://yoa.st/1--"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/Yoast/wordpress-seo/issues",
"forum": "https://wordpress.org/support/plugin/wordpress-seo",
"wiki": "https://github.com/Yoast/wordpress-seo/wiki",
"source": "https://github.com/Yoast/wordpress-seo"
},
"require": {
"composer/installers": "~1.0",
"yoast/license-manager": "1.6.0",
"yoast/i18n-module": "^3.0",
"yoast/api-libs": "^2.0",
"xrstf/composer-php52": "^1.0.20",
"yoast/whip": "^1.1.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"yoast/php-development-environment": "^1.0",
"yoast/yoastcs": "~0.4.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"admin/",
"frontend/",
"inc/",
"deprecated/"
]
},
"scripts": {
"config-yoastcs": [
"\"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs,../../../vendor/yoast/yoastcs",
"\"vendor/bin/phpcs\" --config-set default_standard Yoast"
],
"check-cs": [
"\"vendor/bin/phpcs\""
],
"check-cs-errors": [
"\"vendor/bin/phpcs\" --error-severity=1 --warning-severity=6"
],
"fix-cs": [
"\"vendor/bin/phpcbf\""
],
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
}
}