illarra / core-bundle
Core functionality.
Installs: 257
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Language:CSS
Type:symfony-bundle
Requires
- php: >=5.4
- knplabs/knp-menu-bundle: 2.0.*
Requires (Dev)
- symfony/framework-bundle: >=2.3,<2.4-dev
This package is not auto-updated.
Last update: 2024-05-06 12:35:57 UTC
README
Installation
Add this bundle (and its dependencies, if they are not already there) to your application's kernel:
// app/AppKernel.php public function registerBundles() { return array( // ... new JMS\AopBundle\JMSAopBundle(), new JMS\SerializerBundle\JMSSerializerBundle(), new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(), new Knp\Bundle\MenuBundle\KnpMenuBundle(), new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(), new Illarra\CoreBundle\IllarraCoreBundle(), // ... ); }