-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.21 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
{
"name": "sglms/pdf",
"description": "Simple Laravel wrapper for mPDF with fluent view rendering and signing helpers.",
"type": "library",
"keywords": [
"pdf",
"mpdf",
"laravel",
"sglms",
"signature"
],
"homepage": "https://sglms.com",
"support": {
"issues": "https://github.com/sglms/sglms-pdf/issues",
"source": "https://github.com/sglms/sglms-pdf"
},
"license": "MIT",
"authors": [
{
"name": "James",
"email": "james@sglms.com"
}
],
"require": {
"php": ">=8.3",
"illuminate/support": "^12.0|^13.0",
"illuminate/view": "^12.0|^13.0",
"mpdf/mpdf": "^8.2",
"symfony/http-foundation": "^7.0|^8.0"
},
"require-dev": {
"laravel/framework": "^12.0|13.0"
},
"autoload": {
"psr-4": {
"Sglms\\Pdf\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Sglms\\Pdf\\PdfServiceProvider"
],
"aliases": {
"Pdf": "Sglms\\Pdf\\Facades\\Pdf"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}