manhattan / publish-bundle
A Symfony 2 bundle for adding Publish fields to entities.
Package info
github.com/frodosghost/PublishBundle
Type:symfony-bundle
pkg:composer/manhattan/publish-bundle
dev-master
2013-12-01 23:18 UTC
Requires
- php: >=5.3.3
- doctrine/common: ~2.2
- manhattan/console-bundle: >=2.0.x-dev
This package is auto-updated.
Last update: 2026-02-27 01:16:24 UTC
README
Add Publish operations to entities within the Manhattan Console. It easily adds Publish specific fields to Entities to allow easy to publish.
How
-
Add this bundle to the composer file:
{ "require": { ... "manhattan/publish-bundle": "dev-master" } } -
Add this bundle to your app kernel:
// app/AppKernel.php public function registerBundles() { return array( // ... new Manhattan\PublishBundle\ManhattanPublishBundle(), // ... ); }