forked from mreg-archive/fpdi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 915 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": "uam/tcpdfx",
"type": "library",
"description": "Extension of TCPDF library and FPDI library with added convenience methods.",
"keywords": ["tcpdf", "pdf", "fpdi", "fpdf"],
"homepage": "https://github.com/opichon/tcpdfx",
"license": "MIT",
"authors": [
{
"name": "Olivier Pichon",
"email": "[email protected]",
"role": "lead developer"
}
],
"require": {
"php": ">=5.3.0",
"setasign/fpdi-tcpdf": "~1.6"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:opichon/tcpdf.git"
}
],
"autoload": {
"psr-4": {
"UAM\\Pdf\\": "lib/"
},
"classmap": [
"data/fonts",
"config"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}