-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
40 lines (40 loc) · 947 Bytes
/
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
{
"name": "beganovich/snappdf",
"description": "Convert webpages or HTML into the PDF file using Chromium or Google Chrome.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benjamin Beganović",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Beganovich\\Snappdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Snappdf\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-zip": "*",
"symfony/process": "^7.1",
"symfony/console": "^7.1",
"symfony/filesystem": "^7.1"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.6",
"phpunit/phpunit": "^11.4"
},
"bin": ["snappdf"],
"scripts": {
"tests": [
"@php vendor/bin/phpunit --testdox"
]
}
}