-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
101 lines (101 loc) · 3.25 KB
/
composer.json
File metadata and controls
101 lines (101 loc) · 3.25 KB
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
{
"name": "automattic/jetpack-boost",
"description": "Boost your WordPress site's performance, from the creators of Jetpack",
"type": "library",
"license": "GPL-2.0-or-later",
"version": "4.5.10-alpha",
"authors": [
{
"name": "Automattic, Inc.",
"email": "support@jetpack.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-json": "*",
"automattic/jetpack-admin-ui": "^0.8.2-alpha",
"automattic/jetpack-assets": "^4.3.34-alpha",
"automattic/jetpack-autoloader": "^5.0.17-alpha",
"automattic/jetpack-boost-core": "^0.4.4-alpha",
"automattic/jetpack-boost-speed-score": "^0.4.14-alpha",
"automattic/jetpack-composer-plugin": "^4.0.6-alpha",
"automattic/jetpack-config": "^3.1.2-alpha",
"automattic/jetpack-connection": "^8.3.3-alpha",
"automattic/jetpack-device-detection": "^3.4.1-alpha",
"automattic/jetpack-image-cdn": "^0.7.25-alpha",
"automattic/jetpack-my-jetpack": "^5.36.0-alpha",
"automattic/jetpack-plugin-deactivation": "^0.3.27-alpha",
"automattic/jetpack-schema": "^0.2.8-alpha",
"automattic/jetpack-status": "^6.1.3-alpha",
"automattic/jetpack-sync": "^4.36.1-alpha",
"automattic/jetpack-wp-js-data-sync": "^0.6.9-alpha",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"automattic/jetpack-test-environment": "@dev",
"automattic/phpunit-select-config": "^1.0.5-alpha",
"brain/monkey": "^2.6.2",
"yoast/phpunit-polyfills": "^4.0.0"
},
"scripts": {
"phpunit": [
"phpunit-select-config phpunit.#.xml.dist --bootstrap tests/bootstrap.php --testsuite unit --colors=always",
"phpunit-select-config phpunit.#.xml.dist --bootstrap tests/bootstrap-wordbless.php --testsuite with-wordpress --colors=always"
],
"test-coverage": "pnpm concurrently --names php,js 'php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --bootstrap tests/bootstrap.php --testsuite unit --coverage-php \"$COVERAGE_DIR/php-unit.cov\" && php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --bootstrap tests/bootstrap-wordbless.php --testsuite with-wordpress --coverage-php \"$COVERAGE_DIR/php-critical.cov\"' 'pnpm:test-coverage'",
"test-js": [
"pnpm run test"
],
"test-php": [
"@composer phpunit"
],
"build-development": [
"pnpm run build"
],
"build-production": [
"pnpm run build-production-concurrently"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"autoload-dev": {
"psr-4": {
"Automattic\\Jetpack_Boost\\Tests\\": "./tests/php"
}
},
"autoload": {
"classmap": [
"app/"
]
},
"config": {
"sort-packages": true,
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ4_5_10_alpha",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
}
},
"extra": {
"mirror-repo": "Automattic/jetpack-boost-production",
"autorelease": true,
"autotagger": {
"v": false
},
"release-branch-prefix": "boost",
"version-constants": {
"JETPACK_BOOST_VERSION": "jetpack-boost.php"
},
"wp-plugin-slug": "jetpack-boost",
"wp-svn-autopublish": true,
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-boost-production/compare/${old}...${new}"
}
}
}