forked from baselbers/woocommerce-pdf-invoices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.04 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
{
"name": "be/woocommerce-pdf-invoices",
"description": "A WordPress plugin that automatically generates and attaches PDF invoices to WooCommerce emails.",
"keywords": ["wordpress", "woocommerce", "pdf", "invoice"],
"homepage": "https://wcpdfinvoices.com",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Bas Elbers",
"email": "info@wcpdfinvoices.com"
}
],
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/baselbers/mpdf"
}
],
"require": {
"php": ">=5.2.14",
"xrstf/composer-php52": "1.*",
"mpdf/mpdf": "dev-mpdf"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-master"
},
"autoload": {
"classmap": [
"includes/"
],
"files": []
}
}