-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
76 lines (76 loc) · 2.25 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
{
"name": "automattic/jetpack-mu-wpcom",
"description": "Enhances your site with features powered by WordPress.com",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1",
"automattic/jetpack-assets": "^4.0.14",
"automattic/jetpack-blocks": "^3.0.8-alpha",
"automattic/jetpack-calypsoify": "^0.2.2-alpha",
"automattic/jetpack-classic-theme-helper": "^0.11.5-alpha",
"automattic/jetpack-connection": "^6.8.0-alpha",
"automattic/jetpack-masterbar": "^0.14.2-alpha",
"automattic/jetpack-redirect": "^3.0.5",
"automattic/jetpack-stats-admin": "^0.24.6-alpha",
"automattic/jetpack-status": "^5.0.10",
"automattic/scheduled-updates": "^0.14.1-alpha",
"automattic/jetpack-compat": "^4.0.1",
"automattic/jetpack-google-analytics": "^0.3.1-alpha",
"scssphp/scssphp": "1.12.0",
"automattic/jetpack-subscribers-dashboard": "^0.1.2-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^3.0.0",
"automattic/jetpack-changelogger": "^6.0.2",
"automattic/jetpack-test-environment": "@dev",
"brain/monkey": "^2.6.2",
"automattic/phpunit-select-config": "^1.0.1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpunit": [
"phpunit-select-config phpunit.#.xml.dist --colors=always"
],
"test-coverage": [
"php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"$COVERAGE_DIR/php.cov\""
],
"test-php": [
"@composer phpunit"
],
"build-production": "pnpm run build-production-js",
"build-development": "pnpm run build-js",
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"mirror-repo": "Automattic/jetpack-mu-wpcom",
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-mu-wpcom/compare/v${old}...v${new}"
},
"autotagger": true,
"branch-alias": {
"dev-trunk": "6.2.x-dev"
},
"textdomain": "jetpack-mu-wpcom",
"version-constants": {
"::PACKAGE_VERSION": "src/class-jetpack-mu-wpcom.php"
}
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}