-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.36 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
{
"name": "vendidero/one-stop-shop-woocommerce",
"description": "One Stop Shop Helper for WooCommerce",
"homepage": "https://github.com/vendidero/one-stop-shop-woocommerce",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"prefer-stable": true,
"version": "dev-main",
"prefer-dist": true,
"minimum-stability": "dev",
"require": {
"composer/installers": "^1.9.0",
"automattic/jetpack-autoloader": "2.11.18",
"vendidero/woocommerce-eu-tax-helper": "2.0.5"
},
"require-dev": {
"woocommerce/woocommerce-sniffs": "^1.0.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/vendidero/woocommerce-eu-tax-helper"
}
],
"config": {
"optimize-autoloader": true,
"allow-plugins": true,
"platform": {
"php": "7.4"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Vendidero\\OneStopShop\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"sh ./bin/package-update.sh"
],
"post-update-cmd": [
"sh ./bin/package-update.sh"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"installer-paths": {
"libs/woocommerce-eu-tax-helper": ["vendidero/woocommerce-eu-tax-helper"]
}
}
}