forked from mikehaertl/phpwkhtmltopdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 830 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
{
"name": "mikehaertl/phpwkhtmltopdf",
"description": "A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface",
"keywords": ["pdf"],
"homepage": "http://mikehaertl.github.com/phpwkhtmltopdf/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Haertl",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.0.0"
},
"autoload": {
"classmap": ["WkHtmlToPdf.php"]
},
"suggest": {
"h4cc/wkhtmltopdf-i386": "wkhtmltopdf static linked linux binary for i386 systems.",
"h4cc/wkhtmltopdf-amd64": "wkhtmltopdf static linked linux binary for amd64 systems."
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}