forked from vendidero/woocommerce-germanized-dhl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 866 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
{
"name": "vendidero/woocommerce-germanized-dhl",
"description": "The Germanized DHL implementation.",
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"automattic/jetpack-autoloader": "^2.6.0",
"baltpeter/internetmarke-php": "^0.5.0",
"wsdltophp/wssecurity": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "6.5.14"
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload",
"python ./bin/update-holidays.py"
],
"post-update-cmd": [
"composer dump-autoload",
"python ./bin/update-holidays.py"
]
},
"autoload": {
"psr-4": {
"Vendidero\\Germanized\\DHL\\": "src"
}
}
}