-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 1006 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
{
"name": "tesla-software/chrome2pdf",
"type": "standard",
"description": "Convert HTML to Pdf using headless chrome.",
"homepage": "https://github.com/tesla-software/chrome2pdf",
"license": "MIT",
"keywords": ["chrome", "convert", "html", "pdf", "headless"],
"authors": [
{
"name": "Karlo Mikuš",
"email": "contact@karlomikus.com",
"homepage": "https://karlomikus.com",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"Tesla\\Chrome2Pdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tesla\\Chrome2Pdf\\": "tests/"
}
},
"require": {
"php": "^7.2|^8.0",
"jakubkulhan/chrome-devtools-protocol": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*",
"smalot/pdfparser": "^0.14.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}