-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 1.81 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
{
"name": "automattic/jetpack-videopress",
"description": "VideoPress package",
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"automattic/jetpack-admin-ui": "^0.5.2",
"automattic/jetpack-assets": "^4.0.5",
"automattic/jetpack-connection": "^6.4.0-alpha",
"automattic/jetpack-my-jetpack": "^5.4.2-alpha",
"automattic/jetpack-plans": "^0.5.2"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^5.1.0",
"automattic/jetpack-test-environment": "@dev",
"brain/monkey": "2.6.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"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-php": [
"@composer phpunit"
],
"test-js": [
"pnpm run test"
],
"build-production": [
"NODE_ENV=production BABEL_ENV=production pnpm run build"
],
"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-videopress",
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-videopress/compare/v${old}...v${new}"
},
"branch-alias": {
"dev-trunk": "0.25.x-dev"
},
"version-constants": {
"::PACKAGE_VERSION": "src/class-package-version.php"
},
"textdomain": "jetpack-videopress-pkg"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}