-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 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
{
"name": "traincase/html-to-pdf-tinker",
"description": "Skeleton for live tinkering with HTML templates for conversion to PDF.",
"type": "library",
"license": "MIT",
"keywords": [
"html2pdf",
"html",
"pdf",
"preview"
],
"authors": [
{
"name": "Jelle Roorda",
"email": "info@roordaict.nl"
}
],
"autoload": {
"psr-4": {
"Traincase\\HtmlToPdfTinker\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Traincase\\HtmlToPdfTinker\\Tests\\": "./tests"
}
},
"require": {
"php": "^8.0",
"dompdf/dompdf": "^1.2.1",
"mikehaertl/phpwkhtmltopdf": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"larapack/dd": "^1.1",
"league/flysystem-memory": "^3.0",
"smalot/pdfparser": "^0.14.0"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}