-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
104 lines (104 loc) · 2.88 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
{
"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": "3.6.2-alpha",
"authors": [
{
"name": "Automattic, Inc.",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-json": "*",
"automattic/jetpack-admin-ui": "^0.5.1",
"automattic/jetpack-assets": "^4.0.2",
"automattic/jetpack-autoloader": "^5.0.0",
"automattic/jetpack-boost-core": "^0.3.2",
"automattic/jetpack-boost-speed-score": "^0.4.0",
"automattic/jetpack-composer-plugin": "^4.0.0",
"automattic/jetpack-config": "^3.0.0",
"automattic/jetpack-connection": "^6.2.1",
"automattic/jetpack-device-detection": "^3.0.0",
"automattic/jetpack-image-cdn": "^0.7.2",
"automattic/jetpack-my-jetpack": "^5.1.2",
"automattic/jetpack-plugin-deactivation": "^0.3.1-alpha",
"automattic/jetpack-schema": "^0.2.0",
"automattic/jetpack-status": "^5.0.1",
"automattic/jetpack-sync": "^4.1.1",
"automattic/jetpack-wp-js-data-sync": "^0.6.0",
"matthiasmullie/minify": "^1.3",
"tubalmartin/cssmin": "^4.1"
},
"require-dev": {
"automattic/jetpack-changelogger": "^5.1.0",
"automattic/wordbless": "0.4.2",
"brain/monkey": "^2.6.2",
"yoast/phpunit-polyfills": "^1.1.1"
},
"scripts": {
"phpunit": [
"./vendor/phpunit/phpunit/phpunit --colors=always"
],
"test-coverage": "pnpm concurrently --names php,js 'php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.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"
],
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy"
},
"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ⓥ3_6_2_alpha",
"allow-plugins": {
"roots/wordpress-core-installer": true,
"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}"
}
}
}