-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
78 lines (78 loc) · 2.04 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
{
"name": "automattic/jetpack-search",
"description": "Tools to assist with enabling cloud search for Jetpack sites.",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"automattic/jetpack-connection": "^6.0.0",
"automattic/jetpack-assets": "^3.0.0",
"automattic/jetpack-constants": "^3.0.0",
"automattic/jetpack-status": "^5.0.0",
"automattic/jetpack-config": "^3.0.0",
"automattic/jetpack-my-jetpack": "^5.0.0",
"automattic/jetpack-sync": "^4.0.0"
},
"require-dev": {
"automattic/jetpack-changelogger": "^5.0.0",
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/wordbless": "0.4.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"build": [
"Composer\\Config::disableProcessTimeout",
"pnpm run build"
],
"build-development": [
"pnpm run build-development"
],
"build-production": [
"pnpm run build-production"
],
"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"
],
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autotagger": true,
"mirror-repo": "Automattic/jetpack-search",
"textdomain": "jetpack-search-pkg",
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-search/compare/v${old}...v${new}"
},
"branch-alias": {
"dev-trunk": "0.47.x-dev"
},
"version-constants": {
"::VERSION": "src/class-package.php"
}
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}