-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.73 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "automattic/jetpack-premium-analytics",
"description": "Premium Analytics dashboard for Jetpack sites.",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4",
"automattic/jetpack-assets": "^5.0.2-alpha",
"automattic/jetpack-config": "^4.0.0",
"automattic/jetpack-connection": "^9.1.1-alpha",
"automattic/jetpack-stats": "^0.21.0",
"automattic/jetpack-status": "^7.0.0",
"automattic/jetpack-sync": "^5.1.0-alpha",
"automattic/jetpack-wp-build-polyfills": "^0.5.2-alpha",
"automattic/woocommerce-analytics": "^0.17"
},
"require-dev": {
"yoast/phpunit-polyfills": "^4.0.0",
"automattic/phpunit-select-config": "^1.0.11"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpunit": [
"phpunit-select-config phpunit.#.xml.dist --colors=always"
],
"test-php": "@composer phpunit",
"test-php-coverage": "php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"$COVERAGE_DIR/php.cov\"",
"test-js": "pnpm run test && pnpm run test-tz",
"test-js-coverage": "pnpm run test-coverage",
"build-development": [
"pnpm run build"
],
"build-production": [
"pnpm run build-production"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autotagger": true,
"mirror-repo": "Automattic/jetpack-premium-analytics",
"textdomain": "jetpack-premium-analytics-pkg",
"version-constants": {
"::PACKAGE_VERSION": "src/class-analytics.php"
},
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-premium-analytics/compare/${old}...${new}"
},
"branch-alias": {
"dev-trunk": "0.6.x-dev"
}
}
}