-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "websolutionstuff/pdf-laravel",
"description": "Websolutionstuff PDF support for Laravel 6, Laravel 7, Laravel 8, Laravel 9",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"pdf",
"laravel",
"html to pdf converter",
"websolutionstuff"
],
"authors": [
{
"name": "websolutionstuff",
"email": "websolutionstuff@gmail.com"
}
],
"require": {
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"tecnickcom/tcpdf": "6.2.*|6.3.*|6.4.*|6.5.*|6.6.*|dev-main"
},
"autoload": {
"psr-4": {
"Websolutionstuff\\PDF\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Websolutionstuff\\PDF\\ServiceProvider"
],
"aliases": {
"PDF": "Websolutionstuff\\PDF\\Facades\\PDF"
}
}
}
}