-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 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
46
47
48
49
50
51
52
53
54
{
"name": "spiritix/php-chrome-html2pdf",
"type": "library",
"description": "A PHP library for converting HTML to PDF using Google Chrome",
"license": "MIT",
"keywords": [
"php",
"html",
"pdf",
"Html2Pdf",
"html2pdf",
"chrome",
"headless",
"puppeteer"
],
"authors": [
{
"name": "Matthias Isler",
"email": "mi@matthias-isler.ch"
}
],
"require": {
"php": "^8.1",
"oat-sa/composer-npm-bridge": "^0.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Spiritix\\Html2Pdf\\": "src/Spiritix/Html2Pdf/"
}
},
"autoload-dev": {
"psr-4": {
"Spiritix\\Html2Pdf\\Tests\\": "tests/php/"
}
},
"minimum-stability": "stable",
"extra": {
"npm-bridge": {
"timeout": 3600
}
},
"config": {
"allow-plugins": {
"oat-sa/composer-npm-bridge": true,
"eloquent/composer-npm-bridge": true
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}