forked from spatie/laravel-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "spatie/laravel-pdf",
"description": "Create PDFs in Laravel apps",
"keywords": [
"Spatie",
"laravel",
"laravel-pdf"
],
"homepage": "https://github.com/spatie/laravel-pdf",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0",
"setasign/fpdi": "^2.6",
"spatie/browsershot": "^4.0",
"spatie/laravel-package-tools": "^1.16.1",
"spatie/pdf-to-text": "^1.52.1",
"spatie/temporary-directory": "^2.2.1"
},
"require-dev": {
"ext-imagick": "*",
"larastan/larastan": "^2.7.0",
"laravel/pint": "^1.13.7",
"nunomaduro/collision": "^7.10",
"orchestra/testbench": "^8.18",
"pestphp/pest": "^2.30",
"pestphp/pest-plugin-arch": "^2.5",
"pestphp/pest-plugin-laravel": "^2.2",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.15",
"spatie/image": "^3.3.2",
"spatie/laravel-ray": "^1.33",
"spatie/pdf-to-image": "^2.2",
"spatie/pest-plugin-snapshots": "^2.1",
"spatie/pixelmatch-php": "^1.0",
"wnx/sidecar-browsershot": "dev-main"
},
"autoload": {
"psr-4": {
"Spatie\\LaravelPdf\\": "src/",
"Spatie\\LaravelPdf\\Database\\Factories\\": "database/factories/"
},
"files": [
"src/Support/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Spatie\\LaravelPdf\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": [
"@composer run prepare",
"@php vendor/bin/testbench workbench:build --ansi"
],
"serve": [
"Composer\\Config::disableProcessTimeout",
"@composer run build",
"@php vendor/bin/testbench serve"
],
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\LaravelPdf\\PdfServiceProvider"
],
"aliases": {
"LaravelPdf": "Pdf"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}