-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.8 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
{
"name": "heimrichhannot/contao-encore-bundle",
"type": "contao-bundle",
"description": "This bundle brings deep integration for symfony encore into contao. On the one hand, your can prepare your bundles to define own webpack entries, which added with just one command to your webpack entries. On the other hand, this bundle allows you to add encore entries only on the pages you need them for optimizing your website performance.",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/heimrichhannot/contao-encore-bundle",
"authors": [
{
"name": "Heimrich & Hannot GmbH",
"email": "digitales@heimrich-hannot.de",
"homepage": "https://heimrich-hannot.de",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/heimrichhannot/contao-encore-bundle/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"contao/core-bundle": "^4.13 || ^5.0",
"heimrichhannot/contao-encore-contracts": "^1.0",
"heimrichhannot/contao-multi-column-editor-bundle": "^2.0",
"heimrichhannot/contao-utils-bundle": "^2.231.0 || ^3.0",
"symfony/cache": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/deprecation-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/filesystem": "^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/translation": "^5.4 || ^6.0 || ^7.0",
"symfony/translation-contracts": "^1.1.6 || ^2.0 || ^3.0",
"symfony/webpack-encore-bundle": "^1.0 || ^2.0",
"twig/twig": "^1.38.3 || ^2.7 || ^3.0"
},
"require-dev": {
"contao/core-bundle": "^4.13",
"contao/test-case": "^4.0",
"contao/manager-plugin": "^2.13",
"phpunit/phpunit": "^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^3.2 || ^4.0 || ^5.0 || ^6.0",
"heimrichhannot/contao-test-utilities-bundle": "^0.1.4",
"phpstan/phpstan": "^1.12 || ^2.0",
"phpstan/phpstan-symfony": "^1.4 || ^2.0",
"rector/rector": "^1.2 || ^2.0",
"contao/contao-rector": "dev-main",
"symplify/easy-coding-standard": "^12.5"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\EncoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\EncoreBundle\\Test\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"contao-components/installer": true,
"composer/package-versions-deprecated": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\EncoreBundle\\ContaoManager\\Plugin"
}
}