illarra / content-bundle
Entities and classes for managing website content.
Installs: 80
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.4
- jms/di-extra-bundle: 1.4.*@dev
- knplabs/knp-markdown-bundle: 1.2.*@dev
- liip/imagine-bundle: dev-master
Requires (Dev)
- symfony/framework-bundle: >=2.3,<2.4-dev
This package is not auto-updated.
Last update: 2024-05-06 13:02:32 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\DiExtraBundle\JMSDiExtraBundle($this), new Knp\Bundle\MarkdownBundle\KnpMarkdownBundle(), new Liip\ImagineBundle\LiipImagineBundle(), new Illarra\ContentBundle\IllarraContentBundle(), // ... ); }