forked from mikerockett/weasyprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.23 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
{
"name": "rockett/weasyprint",
"description": "A feature-rich Laravel wrapper for the WeasyPrint Document Factory.",
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Mike Rockett",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"composer/semver": "^3.4",
"illuminate/support": "^9.0|^10.0|^11.0",
"rockett/pipeline": "^3.0",
"symfony/process": "^6.0"
},
"require-dev": {
"johnbacon/stout": "^1.13",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.23",
"smalot/pdfparser": "^2.7"
},
"autoload": {
"psr-4": {
"WeasyPrint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WeasyPrint\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"WeasyPrint\\Provider"
]
}
},
"scripts": {
"test": [
"@dump",
"@pest"
],
"dump": "composer dumpautoload",
"pest": "./vendor/bin/pest --profile",
"format": "./vendor/bin/stout --dirty",
"format-all": "./vendor/bin/stout"
}
}