Use Mummert Media namespace and composer vendor

This commit is contained in:
Jürgen Mummert
2025-12-21 18:14:20 +01:00
parent aff120670e
commit 2727be2b05
2 changed files with 24 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"name": "mummert-media/contao-meilisearch-bundle",
"description": "Contao Meilisearch integration bundle",
"type": "contao-bundle",
"license": "MIT",
"require": {
"php": "^8.4",
"contao/core-bundle": "^5.6 || ^5.7"
},
"autoload": {
"psr-4": {
"MummertMedia\\ContaoMeilisearchBundle\\": "src/"
}
}
}
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace MummertMedia\ContaoMeilisearchBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ContaoMeilisearchBundle extends Bundle
{
}