2017 © Pedro Peláez
 

ezplatform-bundle cookbook-bundle

eZ Platform Bundle with ready to use code samples

image

ezsystems/cookbook-bundle

eZ Platform Bundle with ready to use code samples

  • Thursday, April 12, 2018
  • by bdunogier
  • Repository
  • 10 Watchers
  • 12 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 20 Forks
  • 9 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

CookbookBundle

Cookbook bundle aims to: - Provide full working examples of eZ Platform API use - Serve as a reusale set of commands you can use when you need to during development, (*1)

1.0 on this bundle aims to work across eZ Publish Platform 5.4 and eZ Platform 1.7 / 1.13 / 2.5., (*2)

Getting started

Required:, (*3)

  • PHP (minimum 5.6, 7.0+ is recommended)
  • Composer
  1. Create and install eZ Platform using composer:, (*4)

    composer create-project ezsystems/ezplatform:^2
    

    Follow the instructions that show up on the screen to have fully working clean install of eZ Platform., (*5)

  2. Install CookbookBundle using composer:, (*6)

    # 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., (*7)

  3. Enable the bundle in AppKernel.php:, (*8)

    public function registerBundles()
    {
        $bundles = array(
            // ...
            new EzSystems\CookbookBundle\EzSystemsCookbookBundle(),
        );
    
        // ...
    }
    
  4. Clear Symfony cache, (*9)

    php bin/console cache:clear
    
  5. Try already defined commands. You can find all available commands by:, (*10)

    php bin/console |grep 'ezpublish:cookbook'
    

That's all!, (*11)

The Versions

12/04 2018

dev-master

9999999-dev https://github.com/ezsystems/CookbookBundle

eZ Platform Bundle with ready to use code samples

  Sources   Download

GPL-2.0

The Requires