This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.56 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
{
"name": "trogon/otus-pdf",
"description": "Object oriented PDF document generation library.",
"keywords": [
"Otus PDF",
"pdf",
"pdf generation",
"document generator",
"pdf creator"
],
"type": "library",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/trogon/otus-pdf/issues?state=open",
"wiki": "https://github.com/trogon/otus-pdf/wiki",
"source": "https://github.com/trogon/otus-pdf",
"docs": "https://trogon.github.io/otus-pdf"
},
"authors": [
{
"name": "Trogon Software",
"email": "[email protected]",
"homepage": "http://www.trogon.eu",
"role": "Publisher"
},
{
"name": "Maciej Klemarczyk",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^7.2 || ^7.1 || ^7.0 || ^5.6 || ^5.5",
"phenx/php-font-lib": "^0.5.1",
"trogon/adobe-fonts-core14": "^1.0"
},
"require-dev": {
"codeception/codeception": "^2.4"
},
"autoload": {
"psr-4": {
"trogon\\otuspdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"trogon\\otuspdf\\test\\": "tests/"
}
},
"scripts": {
"post-package-install": [
"trogon\\otuspdf\\io\\FontInstaller::postPackageInstall"
],
"install-fonts": [
"trogon\\otuspdf\\io\\FontInstaller::buildFontMetrics"
]
}
}