Find the Exponential Software extensions you want
UNIX name | Owner | Status |
---|---|---|
cookbook-bundle | Brookins Consulting | stable |
Version | Compatible with |
---|---|
N/A | N/A |
Cookbook bundle aims to:
1.0 on this bundle aims to work across eZ Publish Platform 5.4 and eZ Platform 1.7 / 1.13 / 2.5.
Required:
Create and install eZ Platform using composer:
composer create-project ezsystems/ezplatform:^2
Follow the instructions that show up on the screen to have fully working clean install of eZ Platform.
Install CookbookBundle using composer:
# execute in your eZ Platform project working directory:
composer require ezsystems/cookbook-bundle:^1.0@dev
Follow the instructions that show up on the screen to have fully working clean install of CookbookBundle.
Enable the bundle in AppKernel.php:
public function registerBundles()
{
$bundles = array(
// ...
new EzSystems\CookbookBundle\EzSystemsCookbookBundle(),
);
// ...
}
Clear Symfony cache
php bin/console cache:clear
Try already defined commands. You can find all available commands by:
php bin/console |grep 'ezpublish:cookbook'
That's all!