-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.48 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.48 KB
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
{
"name": "heimrichhannot/contao-flare-bundle",
"type": "contao-bundle",
"description": "Filter, list, and read entities with this bundle for Contao Open Source CMS.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"friendsofsymfony/http-cache-bundle": "^2.17 || ^3.0",
"contao/core-bundle": "^4.13 || ^5.0",
"composer/semver": "^3.4",
"doctrine/dbal": "^2.13 || ^3.0 || ^4.0",
"mvo/contao-group-widget": "^1.5",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
"symfony/property-info": "^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0",
"symfony/string": "^5.2 || ^6.0 || ^7.0",
"symfony/validator": "^5.4 || ^6.0 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"contao/test-case": "^4.0 || ^5.0",
"contao/manager-plugin": "^2.0",
"heimrichhannot/contao-test-utilities-bundle": "^0.1",
"phpunit/phpunit": "^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.2"
},
"suggest": {
"codefog/tags-bundle": "FLARE integrates with Codefog Tags Bundle for tag-based filtering on any data container.",
"contao/calendar-bundle": "FLARE can be used to filter and list calendar events."
},
"autoload": {
"psr-4": {
"HeimrichHannot\\FlareBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\FlareBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\FlareBundle\\ContaoManager\\Plugin"
}
}