Unify manager-plugin namespace to Mummert
This commit is contained in:
@@ -29,7 +29,15 @@ Contao 5.7 Bundle für eine gefilterte Eventliste mit PDF-Export.
|
||||
|
||||
## Installation im Hauptprojekt
|
||||
|
||||
Das Bundle wird als `path`-Repository eingebunden und im Hauptprojekt per Composer installiert.
|
||||
Das Bundle wird als `path`-Repository oder per Git-Repository eingebunden und im Hauptprojekt per Composer installiert.
|
||||
|
||||
Paketname:
|
||||
|
||||
- `mummert/filtered-eventsexport-bundle`
|
||||
|
||||
Beispiel-Repository (Gitea):
|
||||
|
||||
- `ssh://git@git.mummert.media:3245/mummert/filtered-eventsexport-bundle.git`
|
||||
|
||||
## Modul-Konfiguration
|
||||
|
||||
|
||||
+3
-2
@@ -12,11 +12,12 @@
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"FilteredEventsExportBundle\\": "src/"
|
||||
"FilteredEventsExportBundle\\": "src/",
|
||||
"Mummert\\FilteredEventsExportBundle\\": "src/Compat/"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"contao-manager-plugin": "FilteredEventsExportBundle\\Contao\\Manager\\Plugin"
|
||||
"contao-manager-plugin": "Mummert\\FilteredEventsExportBundle\\Contao\\Manager\\Plugin"
|
||||
},
|
||||
"prefer-stable": true
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Mummert\FilteredEventsExportBundle\Contao\Manager;
|
||||
|
||||
class Plugin extends \FilteredEventsExportBundle\Contao\Manager\Plugin
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Mummert\FilteredEventsExportBundle;
|
||||
|
||||
class FilteredEventsExportBundle extends \FilteredEventsExportBundle\FilteredEventsExportBundle
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user