manhattan / publish-bundle
A Symfony 2 bundle for adding Publish fields to entities.
Installs: 205
Dependents: 3
Suggesters: 1
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- doctrine/common: ~2.2
- manhattan/console-bundle: >=2.0.x-dev
This package is auto-updated.
Last update: 2024-10-26 22:17:07 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(), // ... ); }