-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.39 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "heimrichhannot/contao-pwa-bundle",
"type": "contao-bundle",
"description": "A bundle to provide progressive web app support for contao.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-fileinfo": "*",
"contao/core-bundle": "^5.3",
"doctrine/dbal": "^3.0 || ^4.0",
"heimrichhannot/contao-utils-bundle": "^3.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.6",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/string": "^6.4 || ^7.0",
"symfony/translation-contracts": "^1.0 || ^2.0 || ^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"contao/core-bundle": "5.3.*",
"rector/rector": "*",
"contao/contao-rector": "dev-main",
"symplify/easy-coding-standard": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-symfony": "*",
"contao/manager-plugin": "*"
},
"conflict": {
"minishlink/web-push": "<5.0 || >=11.0"
},
"suggest": {
"minishlink/web-push": "Used for sending push notifications. Require as \"^5.0\"."
},
"autoload": {
"psr-4": {
"HeimrichHannot\\PwaBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\PwaBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": false
}
}