forked from dompdf/dompdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
{
"name": "dompdf/dompdf",
"type": "library",
"description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
"homepage": "https://github.com/dompdf/dompdf",
"license": "LGPL-2.1",
"authors": [
{
"name": "Fabien Ménager",
"email": "[email protected]"
},
{
"name": "Brian Sweeney",
"email": "[email protected]"
},
{
"name": "Gabriel Bull",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Dompdf\\": "src/"
},
"classmap": [
"lib/"
]
},
"autoload-dev": {
"psr-4": {
"Dompdf\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1 || ^8.0",
"ext-dom": "*",
"ext-mbstring": "*",
"phenx/php-font-lib": "^0.5.2",
"phenx/php-svg-lib": "^0.3.3",
"ar-php/ar-php": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8 || ^9",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.3"
},
"suggest": {
"ext-gd": "Needed to process images",
"ext-imagick": "Improves image processing performance",
"ext-gmagick": "Improves image processing performance",
"ext-zlib": "Needed for pdf stream compression"
},
"extra": {
"branch-alias": {
"dev-develop": "0.7-dev"
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:Vinelab/ar-php.git"
}
]
}