forked from vendidero/woocommerce-germanized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.63 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
93
94
95
96
{
"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.10.1",
"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-trusted-shops": "4.0.12",
"vendidero/woocommerce-germanized-dhl": "1.6.4",
"vendidero/woocommerce-germanized-shipments": "1.6.4",
"vendidero/one-stop-shop-woocommerce": "1.1.7"
},
"require-dev": {
"myclabs/deep-copy": "^1.7.0",
"phpunit/phpunit": "7.5.14",
"yoast/phpunit-polyfills": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/vendidero/woocommerce-trusted-shops"
},
{
"type": "vcs",
"url": "https://github.com/vendidero/woocommerce-germanized-dhl"
},
{
"type": "vcs",
"url": "https://github.com/vendidero/woocommerce-germanized-shipments"
},
{
"type": "vcs",
"url": "https://github.com/vendidero/one-stop-shop-woocommerce"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.2"
},
"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/woocommerce-trusted-shops": ["vendidero/woocommerce-trusted-shops"],
"packages/woocommerce-germanized-dhl": ["vendidero/woocommerce-germanized-dhl"],
"packages/woocommerce-germanized-shipments": ["vendidero/woocommerce-germanized-shipments"],
"packages/one-stop-shop-woocommerce": ["vendidero/one-stop-shop-woocommerce"]
},
"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"
}
}
}