-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (45 loc) · 1.39 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": "devinsays/woocommerce-coupon-restrictions",
"description": "This extension allows you to create coupons with additional restriction options.",
"keywords": [
"wordpress"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/devinsays/woocommerce-coupon-restrictions",
"license": "GPL-2.0+",
"authors": [
{
"name": "Devin Price",
"homepage": "https://devpress.com"
}
],
"support": {
"issues": "https://github.com/devinsays/woocommerce-coupon-restrictions/issues",
"source": "https://github.com/devinsays/woocommerce-coupon-restrictions"
},
"require-dev": {
"automattic/vipwpcs": "^2.3",
"assertwell/wp-core-test-framework": "^0.1.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"php": ">=7.4",
"phpunit/phpunit": "^7",
"yoast/phpunit-polyfills": "^1.0",
"wp-cli/i18n-command": "^2.2.5"
},
"scripts": {
"make-pot": "wp i18n make-pot . languages/woocommerce-coupon-restrictions.pot"
},
"autoload-dev": {
"psr-4": {
"WooCommerceCouponRestrictions\\Test\\": "tests/phpunit/"
},
"classmap": [
"includes/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}