-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
60 lines (60 loc) · 1.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
{
"name": "fawno/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": "[email protected]",
"homepage": "http://fpdf.org/"
},
{
"name": "Fernando Herrero",
"homepage": "https://lab.fawno.com"
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*"
},
"suggest": {
"ext-openssl": "*",
"setasign/fpdi": "@stable"
},
"autoload": {
"psr-4": {
"Fawno\\FPDF\\": "src/",
"FPDF\\Scripts\\": "scripts/"
},
"classmap": [
"fpdf/fpdf.php"
]
},
"require-dev": {
"phpunit/phpunit": "@stable",
"setasign/fpdi": "@stable",
"ddn/sapp": "@stable"
},
"autoload-dev": {
"psr-4": {
"Fawno\\FPDF\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests"
},
"extra": {
"laravel": {
"aliases": {
"FawnoFPDF": "Fawno\\FPDF\\FawnoFPDF",
"FawnoPDFWrapper ": "Fawno\\FPDF\\PDFWrapper"
}
}
}
}