-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.11 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.11 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
{
"name": "automattic/jetpack-protect",
"description": "Social plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"ext-json": "*",
"automattic/jetpack-assets": "^4.3.32-alpha",
"automattic/jetpack-admin-ui": "^0.7.1-alpha",
"automattic/jetpack-autoloader": "^5.0.16",
"automattic/jetpack-composer-plugin": "^4.0.5",
"automattic/jetpack-config": "^3.1.1",
"automattic/jetpack-my-jetpack": "^5.34.2-alpha",
"automattic/jetpack-plugins-installer": "^0.5.7",
"automattic/jetpack-sync": "^4.35.0",
"automattic/jetpack-transport-helper": "^0.3.5-alpha",
"automattic/jetpack-plans": "^0.11.3",
"automattic/jetpack-waf": "^0.28.2",
"automattic/jetpack-status": "^6.1.2",
"automattic/jetpack-protect-status": "^0.7.8",
"automattic/jetpack-account-protection": "^0.2.12"
},
"require-dev": {
"yoast/phpunit-polyfills": "^4.0.0",
"automattic/jetpack-changelogger": "^6.0.14",
"automattic/phpunit-select-config": "^1.0.4"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpunit": [
"phpunit-select-config phpunit.#.xml.dist --colors=always"
],
"test-coverage": [
"php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"$COVERAGE_DIR/php.cov\""
],
"test-php": [
"@composer phpunit"
],
"build-development": [
"pnpm run build"
],
"build-production": [
"pnpm run build-production-concurrently"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"mirror-repo": "Automattic/jetpack-protect-plugin",
"autorelease": true,
"autotagger": {
"v": false
},
"release-branch-prefix": "protect",
"wp-plugin-slug": "jetpack-protect",
"wp-svn-autopublish": true,
"version-constants": {
"JETPACK_PROTECT_VERSION": "jetpack-protect.php"
}
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
},
"autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectⓥ5_0_0_alpha"
}
}