-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathcomposer.json
41 lines (41 loc) · 1.02 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
{
"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.0"
}
},
"require": {
"composer/installers": "1.6.0"
},
"require-dev": {
"phpunit/phpunit": "5.7.27",
"woocommerce/woocommerce": "3.7.1",
"woocommerce/woocommerce-sniffs": "0.0.6"
},
"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
}
}