-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
130 lines (130 loc) · 4.16 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
{
"name": "automattic/jetpack",
"description": "Jetpack supercharges your self‑hosted WordPress site with the awesome cloud power of WordPress.com",
"homepage": "https://jetpack.com/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/Automattic/jetpack/issues"
},
"require": {
"ext-fileinfo": "*",
"ext-json": "*",
"ext-openssl": "*",
"automattic/jetpack-a8c-mc-stats": "^3.0.0-alpha",
"automattic/jetpack-admin-ui": "^0.5.0-alpha",
"automattic/jetpack-assets": "^3.0.0-alpha",
"automattic/jetpack-autoloader": "^4.0.0-alpha",
"automattic/jetpack-backup": "^4.0.0-alpha",
"automattic/jetpack-blaze": "^0.25.0-alpha",
"automattic/jetpack-blocks": "^3.0.0-alpha",
"automattic/jetpack-boost-speed-score": "^0.4.0-alpha",
"automattic/jetpack-classic-theme-helper": "^0.7.0-alpha",
"automattic/jetpack-compat": "^4.0.0-alpha",
"automattic/jetpack-composer-plugin": "^3.0.0-alpha",
"automattic/jetpack-config": "^3.0.0-alpha",
"automattic/jetpack-connection": "^6.0.0-alpha",
"automattic/jetpack-constants": "^3.0.0-alpha",
"automattic/jetpack-device-detection": "^3.0.0-alpha",
"automattic/jetpack-error": "^3.0.0-alpha",
"automattic/jetpack-forms": "^0.34.0-alpha",
"automattic/jetpack-image-cdn": "^0.7.0-alpha",
"automattic/jetpack-import": "^0.9.0-alpha",
"automattic/jetpack-ip": "^0.4.0-alpha",
"automattic/jetpack-jitm": "^4.0.0-alpha",
"automattic/jetpack-licensing": "^3.0.0-alpha",
"automattic/jetpack-logo": "^3.0.0-alpha",
"automattic/jetpack-masterbar": "^0.10.0-alpha",
"automattic/jetpack-my-jetpack": "^5.0.0-alpha",
"automattic/jetpack-plugins-installer": "^0.5.0-alpha",
"automattic/jetpack-post-list": "^0.7.0-alpha",
"automattic/jetpack-publicize": "^0.56.0-alpha",
"automattic/jetpack-redirect": "^3.0.0-alpha",
"automattic/jetpack-roles": "^3.0.0-alpha",
"automattic/jetpack-search": "^0.47.0-alpha",
"automattic/jetpack-stats": "^0.14.0-alpha",
"automattic/jetpack-stats-admin": "^0.23.0-alpha",
"automattic/jetpack-status": "^5.0.0-alpha",
"automattic/jetpack-sync": "^4.0.0-alpha",
"automattic/jetpack-videopress": "^0.25.0-alpha",
"automattic/jetpack-waf": "^0.23.0-alpha",
"automattic/jetpack-wordads": "^0.4.0-alpha",
"automattic/woocommerce-analytics": "^0.2.0-alpha",
"scssphp/scssphp": "1.12.0"
},
"require-dev": {
"antecedent/patchwork": "^2.1.28",
"automattic/jetpack-changelogger": "^5.0.0-alpha",
"automattic/patchwork-redefine-exit": "^2.0.0-alpha",
"johnkary/phpunit-speedtrap": "^4.0.0 || ^2.0.0",
"yoast/phpunit-polyfills": "^1.1.1"
},
"scripts": {
"build-production": [
"pnpm run build-production-concurrently"
],
"build-development": [
"pnpm run build-concurrently"
],
"phpunit": [
"tests/action-phpunit.sh"
],
"test-coverage": [
"@php tools/build-module-headings-translations.php",
"tests/action-test-coverage.sh"
],
"test-js": [
"pnpm concurrently 'pnpm:compile-ts' 'pnpm:test-adminpage' 'pnpm:test-extensions'"
],
"test-php": [
"@php tools/build-module-headings-translations.php",
"tests/action-test-php.sh"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"autoload": {
"classmap": [
"src"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ14_1_a_2",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
}
},
"extra": {
"mirror-repo": "Automattic/jetpack-production",
"release-branch-prefix": [
"jetpack",
"weekly",
"monthly"
],
"version-constants": {
"JETPACK__VERSION": "jetpack.php"
},
"wp-plugin-slug": "jetpack",
"dev-releases": true,
"changelogger-default-type": "other",
"changelogger": {
"versioning": "wordpress",
"types": {
"major": "Major Enhancements",
"enhancement": "Enhancements",
"compat": "Improved compatibility",
"bugfix": "Bug fixes",
"other": "Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->"
}
}
}
}