Add initial menu bundle #222
This commit is contained in:
parent
4359a8a95b
commit
3e4570c2fa
3 changed files with 12 additions and 0 deletions
10
catalyst/menu-bundle/CatalystMenuBundle.php
Normal file
10
catalyst/menu-bundle/CatalystMenuBundle.php
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Catalyst\MenuBundle;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||||
|
|
||||||
|
class CatalystMenuBundle extends Bundle
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -41,6 +41,7 @@
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"App\\": "src/",
|
"App\\": "src/",
|
||||||
|
"Catalyst\\MenuBundle\\": "catalyst/menu-bundle/",
|
||||||
"Catalyst\\APIBundle\\": "catalyst/api-bundle/"
|
"Catalyst\\APIBundle\\": "catalyst/api-bundle/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,5 @@ return [
|
||||||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
||||||
Catalyst\APIBundle\CatalystAPIBundle::class => ['all' => true],
|
Catalyst\APIBundle\CatalystAPIBundle::class => ['all' => true],
|
||||||
Catalyst\AuthBundle\CatalystAuthBundle::class => ['all' => true],
|
Catalyst\AuthBundle\CatalystAuthBundle::class => ['all' => true],
|
||||||
|
Catalyst\MenuBundle\CatalystMenuBundle::class => ['all' => true],
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue