forked from Automattic/woocommerce-subscriptions-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 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
42
43
44
45
{
"name": "woocommerce/subscriptions-core",
"description": "Sell products and services with recurring payments in your WooCommerce Store.",
"homepage": "https://github.com/Automattic/woocommerce-subscriptions-core",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.1",
"composer/installers": "^1.2 || ^2.2"
},
"require-dev": {
"phpunit/phpunit": "9.5.14",
"woocommerce/woocommerce-sniffs": "0.1.0",
"dave-liddament/sarb": "^1.1",
"yoast/phpunit-polyfills": "1.1.0"
},
"scripts": {
"phpcs": [
"bin/phpcs.sh"
],
"lint": [
"find . \\( -path ./vendor \\) -prune -o \\( -name '*.php' \\) -exec php -lf {} \\;| (! grep -v \"No syntax errors detected\" )"
],
"test": "phpunit"
},
"extra": {
"phpcodesniffer-search-depth": 2
},
"config": {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
"!/build",
"*.zip",
"node_modules"
]
}
}