-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.17 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "automattic/jetpack-forms",
"description": "Jetpack Forms",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"automattic/jetpack-blocks": "^3.3.0",
"automattic/jetpack-assets": "^4.3.26",
"automattic/jetpack-connection": "^8.0.3-alpha",
"automattic/jetpack-device-detection": "^3.4.0",
"automattic/jetpack-external-connections": "^0.1.19-alpha",
"automattic/jetpack-jwt": "^0.2.2",
"automattic/jetpack-logo": "^3.0.5",
"automattic/jetpack-plans": "^0.11.3",
"automattic/jetpack-status": "^6.1.2",
"automattic/jetpack-sync": "^4.32.0-alpha",
"automattic/jetpack-admin-ui": "^0.5.12-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^4.0.0",
"automattic/jetpack-changelogger": "^6.0.14",
"automattic/jetpack-connection": "^8.0.3-alpha",
"automattic/jetpack-test-environment": "@dev",
"automattic/phpunit-select-config": "^1.0.3",
"automattic/wp-feature-api": "@dev"
},
"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": "pnpm concurrently --names php,js 'php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"$COVERAGE_DIR/php.cov\"' 'pnpm:test-coverage'",
"test-php": [
"@composer phpunit"
],
"test-js": [
"pnpm run test"
],
"build-production": [
"pnpm run build-production"
],
"build-development": [
"pnpm run build"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autotagger": true,
"mirror-repo": "Automattic/jetpack-forms",
"changelogger": {
"link-template": "https://github.com/automattic/jetpack-forms/compare/v${old}...v${new}"
},
"branch-alias": {
"dev-trunk": "7.12.x-dev"
},
"textdomain": "jetpack-forms",
"version-constants": {
"::PACKAGE_VERSION": "src/class-jetpack-forms.php"
}
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}