-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.23 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
{
"name": "endroid/pdf",
"description": "Endroid PDF",
"keywords": ["endroid", "pdf"],
"homepage": "https://github.com/endroid/pdf",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"endroid/asset": "^2.0.1",
"endroid/embed": "^1.1.1",
"endroid/installer": "^1.3.2",
"h4cc/wkhtmltopdf-amd64": "^0.12.4",
"iio/libmergepdf": "^4.0",
"knplabs/knp-snappy": "^1.0",
"symfony/http-foundation": "^5.4||^6.4||^7.0"
},
"require-dev": {
"endroid/quality": "dev-main"
},
"suggest": {
"roave/security-advisories": "Avoids installation of package versions with vulnerabilities"
},
"autoload": {
"psr-4": {
"Endroid\\Pdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\Pdf\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true
}
}
}