-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
105 lines (105 loc) · 3.3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "woocommerce/payments",
"description": "WooCommerce Payments",
"homepage": "https://github.com/Automattic/woocommerce-payments",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"composer/installers": true,
"automattic/jetpack-autoloader": true,
"cweagans/composer-patches": true,
"kalessil/production-dependencies-guard": true
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"automattic/jetpack-connection": "2.12.4",
"automattic/jetpack-config": "2.0.4",
"automattic/jetpack-autoloader": "3.0.10",
"automattic/jetpack-sync": "3.8.0",
"woocommerce/subscriptions-core": "6.7.1"
},
"require-dev": {
"composer/installers": "1.10.0",
"phpunit/phpunit": "9.5.14",
"woocommerce/woocommerce-sniffs": "1.0.0",
"woocommerce/action-scheduler": "3.8.2",
"kalessil/production-dependencies-guard": "dev-master",
"vimeo/psalm": "4.13.1",
"php-stubs/wordpress-stubs": "5.9.6",
"php-stubs/woocommerce-stubs": "6.8.0",
"rregeer/phpunit-coverage-check": "0.3.1",
"yoast/phpunit-polyfills": "1.1.0",
"cweagans/composer-patches": "1.7.1",
"automattic/jetpack-changelogger": "3.3.2",
"spatie/phpunit-watcher": "1.23",
"woocommerce/qit-cli": "0.4.0",
"slevomat/coding-standard": "8.15.0",
"dg/bypass-finals": "1.5.1",
"sirbrillig/phpcs-variable-analysis": "^2.11"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
},
"installer-disable": true,
"production-dependencies-guard": [
"check-lock-file",
"check-abandoned"
],
"composer-exit-on-patch-failure": true,
"patches": {
},
"changelogger": {
"changelog": "changelog.txt",
"types": {
"add": "Add",
"fix": "Fix",
"update": "Update",
"dev": "Dev"
},
"formatter": {
"filename": "bin/class-wcpay-changelog-formatter.php"
},
"changes-dir": "changelog"
}
},
"autoload": {
"psr-4": {
"WCPay\\MultiCurrency\\": "includes/multi-currency",
"WCPay\\Vendor\\": "lib/packages",
"WCPay\\": "src"
},
"files": [
"src/wcpay-get-container.php"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/automattic/woocommerce-subscriptions-core.git"
}
]
}