-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (44 loc) · 893 Bytes
/
composer.json
File metadata and controls
45 lines (44 loc) · 893 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "code4mk/lara-pdf",
"description": "Generate Laravel pdf document from html",
"keywords": [
"laravel",
"pdf",
"laravel-pdf",
"mpdf",
"php-pdf",
"0devco",
"code4mk"
],
"homepage": "https://github.com/code4mk/lara-pdf",
"support": {
"issues": "https://github.com/code4mk/lara-pdf/issues",
"source": "https://github.com/code4mk/lara-pdf"
},
"authors": [
{
"name": "code4mk",
"email": "hiremostafa@gmail.com",
"homepage": "https://code4mk.org",
"role": "code artist"
}
],
"license": "MIT",
"require": {
"mpdf/mpdf": "^7.1"
},
"autoload": {
"psr-4": {
"Code4mk\\LARAPDF\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Code4mk\\LARAPDF\\LARAPDFServiceProvider"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}