-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
54 lines (54 loc) · 1.43 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
{
"name": "pimcore/web-to-print-bundle",
"license": "GPL-3.0-or-later",
"type": "pimcore-bundle",
"description": "Pimcore WebToPrint Bundle",
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"doctrine/dbal": "^3.6",
"pimcore/admin-ui-classic-bundle": "^1.1 || 2.x-dev",
"pimcore/pimcore": "^11.2 || ^12.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.5",
"phpstan/phpstan-symfony": "^1.2.20",
"gotenberg/gotenberg-php": "^1.1.8 || ^2.2",
"chrome-php/chrome": "^1.8",
"codeception/codeception": "^5.0.3",
"codeception/module-symfony": "^3.1.0",
"codeception/phpunit-wrapper": "^9"
},
"suggest": {
"gotenberg/gotenberg-php": "Required for generating pdf via Gotenberg in assets preview (LibreOffice), page preview, version diff and web2print",
"chrome-php/chrome": "Required for Documents Page Previews"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\WebToPrintBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\WebToPrintBundle\\Tests\\": "tests"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\WebToPrintBundle\\PimcoreWebToPrintBundle"
]
}
}
}