-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
76 lines (76 loc) · 1.7 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
{
"name": "gotenberg/gotenberg-php",
"description": "A PHP client for interacting with Gotenberg, a developer-friendly API for converting numerous document formats into PDF files, and more!",
"homepage": "/~https://github.com/gotenberg/gotenberg-php",
"keywords": [
"gotenberg",
"pdf",
"convert",
"html",
"markdown",
"csv",
"excel",
"word",
"xlsx",
"docx",
"pptx",
"pdftk",
"libreoffice",
"unoconv",
"wkhtmltopdf",
"unoconv",
"chrome",
"chromium",
"puppeteer"
],
"license": "MIT",
"authors": [
{
"name": "Julien Neuhart",
"email": "neuhart.julien@gmail.com",
"homepage": "/~https://github.com/gulien",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/psr7": "^1 || ^2.1",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"pestphp/pest": "^2.28",
"phpstan/phpstan": "^1.12",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"Gotenberg\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gotenberg\\Test\\": "tests"
}
},
"scripts": {
"lint": [
"phpcs",
"phpstan analyse -l max src tests"
],
"lint:fix": "phpcbf",
"tests": "XDEBUG_MODE=coverage pest --coverage --coverage-html coverage_html --coverage-clover coverage.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}