forked from tecnickcom/tc-lib-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tecnickcom/tc-lib-pdf",
"description": "PHP PDF Library",
"type": "library",
"homepage": "http://www.tecnick.com",
"license": "LGPL-3.0",
"keywords": ["tc-lib-pdf", "TCPDF", "PDF", "PDFD32000-2008", "document"],
"authors": [
{
"name": "Nicola Asuni",
"email": "info@tecnick.com",
"role": "lead"
}
],
"require": {
"php": ">=5.4",
"tecnickcom/tc-lib-barcode": "^1.15.4",
"tecnickcom/tc-lib-color": "^1.12.1",
"tecnickcom/tc-lib-pdf-image": "^1.2.1",
"tecnickcom/tc-lib-pdf-font": "^1.7.3",
"tecnickcom/tc-lib-file": "^1.6.3",
"tecnickcom/tc-lib-pdf-encrypt": "^1.4.3",
"tecnickcom/tc-lib-unicode-data": "^1.6.3",
"tecnickcom/tc-lib-unicode": "^1.3.3",
"tecnickcom/tc-lib-pdf-page": "^2.4.0",
"tecnickcom/tc-lib-pdf-graph": "^1.4.2"
},
"require-dev": {
"apigen/apigen" : "^4.1.2",
"bartlett/php-compatinfo" : "^5.0.0",
"pdepend/pdepend" : "^2.2.2",
"phploc/phploc" : "^2.1.5|^3.0.0",
"phpmd/phpmd" : "^2.3.2",
"phpunit/phpunit": "4.8.19|^5.0.0",
"sebastian/phpcpd" : "^2.0.2",
"squizlabs/php_codesniffer": "^2.5.0|^3.0.0"
},
"autoload": {
"psr-4":{
"Com\\Tecnick\\Pdf\\": "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-barcode.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-color.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-pdf-image.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-pdf-font.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-file.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-pdf-encrypt.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-unicode-data.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-unicode.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-pdf-page.git"
},
{
"type": "vcs",
"url": "git@github.com:tecnickcom/tc-lib-pdf-graph.git"
}
]
}