-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
92 lines (92 loc) · 2.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vendidero/woocommerce-germanized",
"description": "Adapt WooCommerce to the german market.",
"homepage": "https://vendidero.de/",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"prefer-dist": true,
"minimum-stability": "dev",
"require": {
"automattic/jetpack-autoloader": "2.11.18",
"php": ">=5.6|>=7.0",
"composer/installers": "^1.9.0",
"digitick/sepa-xml" : "^2.0.0",
"defuse/php-encryption": "^2.0.0",
"globalcitizen/php-iban": "^4.0.0",
"vendidero/woocommerce-eu-tax-helper": "2.0.7",
"vendidero/shiptastic-for-woocommerce": "4.3.6",
"vendidero/dhl-for-shiptastic": "3.6.5"
},
"require-dev": {
"myclabs/deep-copy": "^1.7.0",
"phpunit/phpunit": "^9.0.0",
"yoast/phpunit-polyfills": "^3.0",
"woocommerce/woocommerce-sniffs": "^1.0.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/vendidero/shiptastic-for-woocommerce"
},
{
"type": "vcs",
"url": "https://github.com/vendidero/dhl-for-shiptastic"
},
{
"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": {
"exclude-from-classmap": [
"includes/legacy",
"includes/libraries",
"includes/gateways/direct-debit/libraries"
],
"psr-4": {
"Vendidero\\Germanized\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"sh ./bin/package-update.sh"
],
"post-update-cmd": [
"sh ./bin/package-update.sh"
],
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"installer-paths": {
"packages/shiptastic-for-woocommerce": ["vendidero/shiptastic-for-woocommerce"],
"packages/dhl-for-shiptastic": ["vendidero/dhl-for-shiptastic"],
"packages/woocommerce-eu-tax-helper": ["vendidero/woocommerce-eu-tax-helper"]
},
"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"
}
}
}