-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.5 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
{
"name": "zaimea/pdf",
"license": "MIT",
"homepage": "https://zaimea.com",
"description": "A lightweight and flexible PDF generator for Laravel applications. It provides a clean, fluent builder to create invoices, reports and other document types directly in your app—without heavy dependencies or complicated setup.",
"keywords": [
"invoices",
"laravel",
"pdf",
"reports",
"zaimea",
"zaimealabs"
],
"authors": [
{
"name": "Custură Laurențiu",
"email": "mail@custura.de"
}
],
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"dompdf/dompdf": "^3.1",
"nesbot/carbon": "^3.0",
"illuminate/view": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0"
},
"require-dev": {
"orchestra/testbench": "^10.0|^11.0",
"phpstan/phpstan": "^1.12.23",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Zaimea\\PDF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Zaimea\\PDF\\PDFServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"minimum-stability": "dev"
}