-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.72 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
{
"name": "fruitcake/laravel-weasyprint",
"description": "WeasyPrint for Laravel",
"keywords": ["laravel", "weasyprint", "pdf"],
"license": "MIT",
"authors": [
{
"name": "Fruitcake",
"homepage": "https://fruitcake.nl"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^9|^10|^11",
"illuminate/filesystem": "^9|^10|^11",
"pontedilana/php-weasyprint": "^1.3"
},
"require-dev": {
"orchestra/testbench": "^7|^8|^9",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Fruitcake\\WeasyPrint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fruitcake\\WeasyPrint\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
},
"laravel": {
"providers": [
"Fruitcake\\WeasyPrint\\WeasyPrintProvider"
],
"aliases": {
"WeasyPrint": "Fruitcake\\WeasyPrint\\\\Facades\\WeasyPrint"
}
}
},
"scripts": {
"actions": "composer test && composer check-style",
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"minimum-stability": "dev",
"prefer-stable": true
}