fix: improve bundle auto-enable compatibility

This commit is contained in:
Jürgen Mummert
2026-03-04 16:01:41 +01:00
parent 47b5199c54
commit 4a183ca344
2 changed files with 11 additions and 4 deletions

View File

@@ -14,6 +14,12 @@ Contao 5.7 Bundle für eine Pinwand mit frei angeordneten Pinnwandeinträgen.
## Installation (Bundle im Projekt einbinden) ## Installation (Bundle im Projekt einbinden)
1. Bundle per Composer einbinden. 1. Bundle per Composer einbinden.
2. Cache leeren. 2. Falls Composer-Plugins im Zielsystem eingeschränkt sind, Bundle manuell in `config/bundles.php` aktivieren:
3. Datenbank aktualisieren.
4. Assets installieren, damit CSS/JS unter `bundles/contaopinboard/` verfügbar sind. ```php
Eiswurm\ContaoPinboardBundle\ContaoPinboardBundle::class => ['all' => true],
```
3. Cache leeren.
4. Datenbank aktualisieren.
5. Assets installieren, damit CSS/JS unter `bundles/contaopinboard/` verfügbar sind.

View File

@@ -5,7 +5,8 @@
"license": "proprietary", "license": "proprietary",
"require": { "require": {
"php": "^8.4", "php": "^8.4",
"contao/core-bundle": "^5.7" "contao/core-bundle": "^5.7",
"contao/manager-plugin": "^2.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {