-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.24 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": "traincase/laravel-pdf-tinker",
"description": "Live tinkering with HTML templates for conversion to PDF.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"html",
"pdf",
"html2pdf",
"preview"
],
"authors": [
{
"name": "Jelle Roorda",
"email": "info@roordaict.nl"
}
],
"autoload": {
"psr-4": {
"Traincase\\LaravelPdfTinker\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Traincase\\LaravelPdfTinker\\Tests\\": "./tests"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"traincase/html-to-pdf-tinker": "^2.0",
"laravel/framework": "^11.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"larapack/dd": "^1.1",
"orchestra/testbench-dusk": "^9.8"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"Traincase\\LaravelPdfTinker\\PdfTinkerServiceProvider"
]
}
}
}