-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
52 lines (52 loc) · 1.18 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
{
"name": "vendidero/woocommerce-germanized-shipments",
"description": "The Germanized Shipments implementation.",
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"prefer-stable": true,
"version": "dev-main",
"minimum-stability": "dev",
"require": {
"automattic/jetpack-autoloader": "2.11.18",
"setasign/fpdi": "^2.3",
"setasign/fpdf": "^1.8.2",
"dvdoug/boxpacker": "^3.9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"yoast/phpunit-polyfills": "^3.0",
"woocommerce/woocommerce-sniffs": "^1.0.0"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": true,
"platform": {
"php": "7.4"
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"sh ./bin/vendor-clean.sh"
],
"post-update-cmd": [
"sh ./bin/vendor-clean.sh"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
]
},
"autoload": {
"psr-4": {
"Vendidero\\Germanized\\Shipments\\": "src"
}
}
}