-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
81 lines (81 loc) · 2.11 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
79
80
81
{
"name": "automattic/jetpack-social",
"description": "Social plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-admin-ui": "^0.5.1",
"automattic/jetpack-assets": "^4.0.2",
"automattic/jetpack-autoloader": "^5.0.0",
"automattic/jetpack-composer-plugin": "^4.0.0",
"automattic/jetpack-config": "^3.0.0",
"automattic/jetpack-publicize": "^0.57.1",
"automattic/jetpack-connection": "^6.2.2",
"automattic/jetpack-my-jetpack": "^5.3.0",
"automattic/jetpack-sync": "^4.2.0",
"automattic/jetpack-status": "^5.0.1",
"automattic/jetpack-plans": "^0.5.1",
"automattic/jetpack-post-list": "^0.7.2"
},
"require-dev": {
"automattic/jetpack-changelogger": "^5.1.0",
"automattic/wordbless": "0.4.2",
"yoast/phpunit-polyfills": "^1.1.1",
"brain/monkey": "^2.6.2"
},
"autoload": {
"classmap": [
"src/"
],
"files": [
"src/utils.php"
]
},
"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-development": [
"pnpm run build"
],
"build-production": [
"pnpm run build-production-concurrently"
],
"watch": [
"Composer\\Config::disableProcessTimeout",
"pnpm run watch"
],
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"autorelease": true,
"autotagger": {
"v": false
},
"mirror-repo": "Automattic/jetpack-social-plugin",
"release-branch-prefix": [
"social",
"monthly"
],
"wp-plugin-slug": "jetpack-social",
"wp-svn-autopublish": true
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
},
"autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ6_0_0_alpha"
}
}