-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.27 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
{
"name": "codelinered/pdf-image",
"description": "Converts uploaded images to PDF, merges 2 PDF files to 1 or converts PDF to image",
"version": "2.0.0",
"keywords": ["tcpdf", "symfony", "pdf", "image", "convert", "merge", "create"],
"homepage": "https://github.com/CodelineRed/pdf-image",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "CodelineRed",
"email": "[email protected]",
"homepage": "https://www.codelinered.net"
}
],
"require": {
"php": "^8.2",
"ext-gd": "*",
"setasign/fpdi": "^2.6",
"symfony/config": "^7.1",
"symfony/form": "^7.1",
"symfony/http-foundation": "^7.1",
"symfony/mime": "^7.1",
"symfony/security-csrf": "^7.1",
"symfony/translation": "^7.1",
"symfony/validator": "^7.1",
"tecnickcom/tcpdf": "^6.7"
},
"suggest": {
"ext-imagick": "Enables you to use the 'PDF to Image' converter",
"ext-zip": "Enables you to use the 'PDF to Image' converter"
},
"autoload": {
"psr-4": {
"PdfImage\\": "src/"
}
},
"config": {
"process-timeout": 0,
"platform": {
"php": "8.3"
}
}
}