illarra / content-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Entities and classes for managing website content.
Package info
github.com/illarra/IllarraContentBundle
Type:symfony-bundle
pkg:composer/illarra/content-bundle
dev-master
2013-10-04 12:00 UTC
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(), // ... ); }