forked from niklasravnsborg/laravel-pdf
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·52 lines (52 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
{
"name": "misterspelik/laravel-pdf",
"description": "Generate PDFs in Laravel with this mPDF wrapper.",
"keywords": ["mpdf", "pdf", "laravel"],
"license": "MIT",
"homepage": "https://github.com/misterspelik/laravel-pdf",
"authors": [
{
"name": "Yaroslav Krutikov",
"email": "[email protected]",
"homepage": "https://github.com/misterspelik"
}
],
"require": {
"php": "^7.4 || ^8.0",
"misterspelik/mpdf": "^8.1.8",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1.1.0 || ^2.0.0 || ^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.0",
"orchestra/testbench": "^8.5.0"
},
"suggest": {
"ext-gd": "Needed to support images creation and conversion",
"ext-imagick": "Allows more advanced work with images",
"ext-mbstring": "Needed in order to work with multi-byte strings"
},
"autoload": {
"psr-4": {
"misterspelik\\LaravelPdf\\": "src/LaravelPdf"
}
},
"autoload-dev": {
"psr-4": {
"misterspelik\\LaravelPdf\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"misterspelik\\LaravelPdf\\Providers\\PdfServiceProvider"
],
"aliases": {
"PDF": "misterspelik\\LaravelPdf\\Facades\\Pdf"
}
}
}
}