manhattan/publish-bundle

A Symfony 2 bundle for adding Publish fields to entities.

dev-master 2013-12-01 23:18 UTC

This package is auto-updated.

Last update: 2024-04-26 21:13:35 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

  1. Add this bundle to the composer file:

     {
         "require": {
             ...
             "manhattan/publish-bundle": "dev-master"
         }
     }
    
  2. Add this bundle to your app kernel:

     // app/AppKernel.php
     public function registerBundles()
     {
         return array(
             // ...
             new Manhattan\PublishBundle\ManhattanPublishBundle(),
             // ...
         );
     }