forked from YetiForceCompany/YetiForcePDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 846 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
39
{
"name": "yetiforce/yetiforcepdf",
"description": "Library that generate pdf files from html.",
"license": "MIT",
"type": "library",
"keywords": [
"pdf",
"html",
"html to pdf"
],
"homepage": "https://github.com/YetiForceCompany/YetiForcePDF",
"authors": [
{
"name": "YetiForceCompany",
"email": "[email protected]",
"homepage": "https://yetiforce.com/"
}
],
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-bcmath": "*",
"ext-zlib": "*",
"ext-gd": "*",
"ext-filter": "*",
"phenx/php-font-lib": "^0.5",
"guzzlehttp/guzzle": "^7",
"composer/ca-bundle": "^1",
"milon/barcode": "^9",
"sabberworm/php-css-parser": "^8"
},
"autoload": {
"psr-4": {
"YetiForcePDF\\": "lib/"
}
}
}