-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
62 lines (62 loc) · 2.04 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
{
"name": "sensiolabs/gotenberg-bundle",
"description": "Gotenberg support for Symfony",
"keywords": ["gotenberg", "symfony", "pdf", "screenshot", "office", "bundle"],
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Sensiolabs\\GotenbergBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sensiolabs\\GotenbergBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Steven Renaux",
"email": "steven.renaux@sensiolabs.com"
}
],
"require": {
"php": ">=8.1",
"psr/container": "^2.0",
"psr/log": "^3.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/http-client-contracts": "^3.5",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/mime": "^6.4 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.41",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.4",
"shipmonk/composer-dependency-analyser": "^1.7",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.10",
"symfony/routing": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0",
"twig/twig": "^3.14"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"suggest": {
"symfony/monolog-bundle": "Enables logging througout the generating process.",
"symfony/twig-bundle": "Allows you to use Twig to render templates into PDF",
"monolog/monolog": "Enables logging througout the generating process."
}
}