-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "woocommerce/bookings-helper",
"description": "Troubleshoot bookings setups easier by quickly exporting/importing product settings.",
"homepage": "https://github.com/woocommerce/bookings-helper/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"require-dev": {
"woocommerce/woocommerce-sniffs": "^0.1.3",
"php-stubs/wp-cli-stubs": "^2.7"
},
"config": {
"platform": {
"php": "7.0"
},
"allow-plugins": {
"composer/installers": true,
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"files": [
"includes/wp-cli-commands/class-wc-bookings-helper-products-command.php",
"includes/wp-cli-commands/class-wc-bookings-helper-global-availability-rules-command.php"
]
},
"archive": {
"exclude": [
"!vendor"
]
},
"require": {
"ext-zip": "*",
"ext-json": "*"
}
}