PHPackages                             iteracode/cakephp-bake-templates-trw - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. iteracode/cakephp-bake-templates-trw

ActiveCakephp-plugin

iteracode/cakephp-bake-templates-trw
====================================

A better cake bake generation

1.0.0(5y ago)052MITHTMLCI failing

Since Aug 3Pushed 5y ago2 watchersCompare

[ Source](https://github.com/Iteracode/cakephp-bake-templates-trw)[ Packagist](https://packagist.org/packages/iteracode/cakephp-bake-templates-trw)[ RSS](/packages/iteracode-cakephp-bake-templates-trw/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

CakephpBakeTemplatesTrw plugin for CakePHP
==========================================

[](#cakephpbaketemplatestrw-plugin-for-cakephp)

This plugin help to have a better bake code generation for :

- Entity
- Fixtures
- Templates ( bootstrap needed ):
    - add
    - edit
    - index

This plugin work with bake 1.x

If you need this plugin to work in bake 2.x you need to change the plugin structure :

Installation
------------

[](#installation)

```
composer require iteracode/cakephp-bake-templates-trw

```

Add into Application.php

```
public function bootstrap()
{
    $this->addPlugin('CsvView');
    //Add here
    $this->addPlugin('CakephpBakeTemplatesTrw');

    parent::bootstrap();
}
```

Use
---

[](#use)

To bake with this plugin just use

```
bin/cake bake WHAT_TO_BAKE TABLE --theme CakephpBakeTemplatesTrw

```

If you to use this theme by default just add

```
