-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.13 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
{
"name": "apphostbd/laravel-fpdf",
"description": "FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.",
"type": "library",
"license": "MIT",
"keywords": [
"fpdf",
"laravel",
"pdf"
],
"support": {
"issues": "https://github.com/apphostbd/laravel-fpdf/issues",
"source": "https://github.com/apphostbd/laravel-fpdf"
},
"authors": [
{
"name": "Farhan Tanvir",
"email": "farhanswe35@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"illuminate/support": "^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"AppHostBD\\Fpdf\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"Fpdf": "AppHostBD\\Fpdf\\Facades\\FpdfFacade",
"FpdfHtml": "AppHostBD\\Fpdf\\Facades\\FpdfHtmlFacade"
}
}
}
}