-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.22 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
{
"name": "automattic/jetpack-mu-wpcom-plugin",
"description": "Test plugin for the jetpack-mu-wpcom package",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1",
"automattic/jetpack-composer-plugin": "^4.0.4",
"automattic/jetpack-mu-wpcom": "^6.4.0-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^3.0.0",
"automattic/jetpack-changelogger": "^6.0.4",
"automattic/phpunit-select-config": "^1.0.2"
},
"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"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autorelease": true,
"autotagger": true,
"beta-plugin-slug": "jetpack-mu-wpcom-plugin",
"mirror-repo": "Automattic/jetpack-mu-wpcom-plugin",
"release-branch-prefix": "mu-wpcom"
},
"config": {
"autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_9_0_alpha",
"allow-plugins": {
"automattic/jetpack-composer-plugin": true
}
}
}