forked from t3brightside/form_pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (43 loc) · 1.11 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": "t3brightside/form-pdf",
"type": "typo3-cms-extension",
"description": "TYPO3 form finisher to write form data into pre-existing PDF file.",
"homepage": "https://github.com/t3brightside/form_pdf/",
"keywords": ["typo3", "pdf", "form"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mykola Orlenko",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Tanel Põld",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Brightside OÜ - TYPO3 development agency",
"role": "Project manager",
"homepage": "https://t3brightside.com/"
}
],
"keywords": [
"form"
],
"require": {
"typo3/cms-core": "^11.5",
"typo3/cms-form": "^11.5",
"mpdf/mpdf": "^8.1"
},
"autoload": {
"psr-4": {
"Brightside\\FormPdf\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "form_pdf"
}
}
}