-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
143 lines (143 loc) · 3.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "automattic/wpcomsh",
"description": "A helper for connecting WordPress.com sites to external host infrastructure.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4",
"automattic/at-pressable-podcasting": "^2.0",
"automattic/custom-fonts": "^3.0",
"automattic/custom-fonts-typekit": "^2.0",
"automattic/text-media-widget-styles": "^2.0",
"automattic/wc-calypso-bridge": "2.8.1",
"wordpress/classic-editor-plugin": "1.6.7",
"automattic/jetpack-composer-plugin": "^4.0.0",
"automattic/jetpack-config": "^3.0.0",
"automattic/jetpack-post-list": "^0.7.3",
"automattic/jetpack-mu-wpcom": "^6.2.0-alpha",
"tubalmartin/cssmin": "^4.1"
},
"require-dev": {
"automattic/jetpack-changelogger": "^5.1.0",
"yoast/phpunit-polyfills": "^1.1.1"
},
"autoload": {
"classmap": [
"customizer-fixes",
"custom-colors",
"endpoints",
"feature-plugins",
"footer-credit",
"frontend-notices",
"imports",
"jetpack-require-connection-owner",
"jetpack-token-error-header",
"jetpack-token-resilience",
"lib",
"logo-tool",
"mailpoet",
"notices",
"privacy",
"private-site",
"safeguard",
"share-post",
"storage",
"storefront",
"widgets",
"wpcom-features",
"wpcom-migration-helpers",
"wpcom-themes"
]
},
"scripts": {
"phpunit": [
"./vendor/phpunit/phpunit/phpunit --colors=always"
],
"test-coverage": [
"php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\""
],
"test-php": [
"@composer phpunit"
]
},
"repositories": [
{
"name": "automattic/custom-fonts",
"type": "vcs",
"no-api": true,
"url": "https://github.com/Automattic/custom-fonts.git"
},
{
"name": "automattic/custom-fonts-typekit",
"type": "vcs",
"no-api": true,
"url": "https://github.com/Automattic/custom-fonts-typekit.git"
},
{
"name": "automattic/at-pressable-podcasting",
"type": "vcs",
"no-api": true,
"url": "https://github.com/automattic/at-pressable-podcasting.git"
},
{
"name": "automattic/text-media-widget-styles",
"type": "vcs",
"no-api": true,
"url": "https://github.com/Automattic/text-media-widget-styles.git"
},
{
"name": "automattic/wc-calypso-bridge",
"type": "vcs",
"no-api": true,
"url": "https://github.com/Automattic/wc-calypso-bridge.git"
},
{
"type": "package",
"package": {
"name": "wordpress/classic-editor-plugin",
"version": "1.6.7",
"dist": {
"url": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip",
"type": "zip"
},
"source": {
"url": "https://plugins.svn.wordpress.org/classic-editor/",
"type": "svn",
"reference": "tags/1.6.7/"
},
"autoload": {
"classmap": []
}
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"automattic/jetpack-composer-plugin": true
},
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_1_0_alpha"
},
"extra": {
"mirror-repo": "Automattic/wpcom-site-helper",
"autorelease": {
"rolling-release": true,
"titlefmt": "wpcomsh %s"
},
"autotagger": true,
"beta-plugin-slug": "wpcomsh",
"changelogger": {
"versioning": "semver"
},
"installer-disable": true,
"release-branch-prefix": [
"wpcomsh"
],
"version-constants": {
"WPCOMSH_VERSION": "wpcomsh.php"
}
}
}