-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
34 lines (34 loc) · 927 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
{
"name": "spiritix/html-to-pdf",
"type": "library",
"description": "Convert HTML markup into beautiful PDF files using the famous wkhtmltopdf library",
"license": "MIT",
"keywords": ["php","html","pdf","htmltopdf","print","converter"],
"authors": [
{
"name": "Matthias Isler",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"h4cc/wkhtmltopdf-i386": "0.12.3.*",
"h4cc/wkhtmltopdf-amd64": "0.12.3.*"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Spiritix\\HtmlToPdf\\": "src/Spiritix/HtmlToPdf/"
}
},
"autoload-dev": {
"psr-4": {
"Spiritix\\HtmlToPdf\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}