forked from Setasign/FPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 814 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 814 Bytes
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
{
"name": "arimac/fpdf",
"homepage": "http://www.fpdf.org",
"description": "FPDF is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.",
"type": "library",
"keywords": ["pdf", "fpdf"],
"license": "MIT",
"authors": [
{
"name": "Olivier Plathey",
"email": "oliver@fpdf.org",
"homepage": "http://fpdf.org/"
},
{
"name": "Ramesh Kithsiri",
"email": "ramesh@arimaclanka.com",
"homepage": "https://arimaclanka.com/"
}
],
"autoload": {
"classmap": [
"fpdf.php"
]
},
"require": {
"ext-zlib": "*",
"ext-gd": "*"
}
}