https://github.com/ezsystems/cookbook-bundle
eZ Publish 5.x / eZ Platform Cookbook examples
https://github.com/ezsystems/cookbook-bundle
cookbook-bundle ez-platform
Last synced: about 1 month ago
JSON representation
eZ Publish 5.x / eZ Platform Cookbook examples
- Host: GitHub
- URL: https://github.com/ezsystems/cookbook-bundle
- Owner: ezsystems
- License: other
- Created: 2012-12-12T15:20:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-04-13T13:09:15.000Z (about 5 years ago)
- Last Synced: 2025-04-05T14:51:12.846Z (2 months ago)
- Topics: cookbook-bundle, ez-platform
- Language: PHP
- Homepage:
- Size: 87.9 KB
- Stars: 15
- Watchers: 23
- Forks: 23
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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 development1.0 on this bundle aims to work across eZ Publish Platform 5.4 and eZ Platform 1.7 / 1.13 / 2.5.
# Getting started
Required:
- PHP _(minimum 5.6, 7.0+ is recommended)_
- Composer0. Create and install eZ Platform using composer:
```bash
composer create-project ezsystems/ezplatform:^2
```Follow the instructions that show up on the screen to have fully working clean install of eZ Platform.
1. Install `CookbookBundle` using composer:
```bash
# 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`.2. Enable the bundle in `AppKernel.php`:
```php
public function registerBundles()
{
$bundles = array(
// ...
new EzSystems\CookbookBundle\EzSystemsCookbookBundle(),
);// ...
}
```3. Clear Symfony cache
```bash
php bin/console cache:clear
```4. Try already defined commands. You can find all available commands by:
```bash
php bin/console |grep 'ezpublish:cookbook'
```That's all!