forked from dkjensen/wc-cart-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 947 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
36
37
38
39
40
41
42
43
{
"name": "dkjensen/wc-cart-pdf",
"type": "wordpress-plugin",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"php-stubs/wordpress-stubs": "*",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"squizlabs/php_codesniffer": "^3.5",
"automattic/vipwpcs": "^2.2",
"php-stubs/woocommerce-stubs": "*"
},
"require": {
"mpdf/mpdf": "^8.0"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n --exclude=Generic.Files.LineEndings"
],
"phpcbf": [
"phpcbf -p"
],
"post-install-cmd": [
"composer dump-autoload -o"
],
"post-update-cmd": [
"composer dump-autoload -o"
]
},
"authors": [
{
"name": "David Jensen",
"email": "[email protected]"
}
]
}