-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 1.17 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
{
"name": "heimrichhannot/contao-search-bundle",
"type": "contao-bundle",
"description": "This bundle contains enhancements for Contao Search.",
"keywords": ["contao", "search", "pdf"],
"license": "LGPL-3.0-or-later",
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"heimrichhannot/contao-utils-bundle": "^2.134 || ^3.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/deprecation-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/polyfill-php80": "^v1.27.0",
"symfony/translation-contracts": "^1.0 || ^2.0 || ^3.0"
},
"conflict": {
"smalot/pdfparser": "<0.18.2"
},
"suggest": {
"smalot/pdfparser": "Needed for pdf parsing. Minimum version 0.18.2."
},
"autoload": {
"psr-4": {
"HeimrichHannot\\SearchBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\SearchBundle\\ContaoManager\\Plugin"
},
"require-dev": {
"rector/rector": "^1.0",
"contao/contao-rector": "dev-main",
"symplify/easy-coding-standard": "^12.1"
}
}