-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 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
{
"name": "automattic/jetpack-boost-speed-score",
"description": "A package that handles the API to generate the speed score.",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^5.1.0",
"brain/monkey": "^2.6"
},
"autoload-dev": {
"psr-4": {
"Automattic\\Jetpack\\Boost_Speed_Score\\Tests\\": "./tests/php"
}
},
"require": {
"php": ">=7.2",
"automattic/jetpack-boost-core": "^0.3.5"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpunit": [
"./vendor/phpunit/phpunit/phpunit --colors=always"
],
"test-coverage": [
"php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\""
],
"test-php": [
"@composer phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"mirror-repo": "Automattic/jetpack-boost-speed-score",
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-boost-speed-score/compare/v${old}...v${new}"
},
"autotagger": true,
"branch-alias": {
"dev-trunk": "0.4.x-dev"
},
"textdomain": "jetpack-boost-speed-score",
"version-constants": {
"::PACKAGE_VERSION": "src/class-speed-score.php"
}
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
}
}