2017 © Pedro PelĂĄez
 

library zf3-cake-orm

The Cake ORM Module for Zend Framework 3

image

armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  • Thursday, April 27, 2017
  • by armenio
  • Repository
  • 2 Watchers
  • 2 Stars
  • 49 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 13 Versions
  • 0 % Grown

The README.md

zf3-cake-orm

Cake ORM Module for Zend Framework, (*1)

How to install

  1. Install via composer. Don't know how? Look here, (*2)

  2. cd my/project/directory, (*3)

  3. Edit composer.json :, (*4)

{
    "require": {
        "armenio/zf3-cake-orm": "1.*"
    }
}
  1. Edit config/application.config.php :
'modules' => array(
     'Application',
     'Cake', // <==============================
)
  1. Change your Model namespace in cd my/project/directory/vendor/armenio/zf3-cake-orm/config/module.config.php
    'Cake' => array(
        'Configure' => array(
            'App' => array(
                'namespace' => 'Application' // <======= put your App/Module namespace HERE!
            ),
        ),
    ),
  1. Create your models, (*5)

    6.1. Go to my/project/directory/your/app/namespace, (*6)

    6.2. Create directory Model/Table/, (*7)

    6.3. Go to my/project/directory/your/app/namespace/Model/Table/, (*8)

    6.4. Create the File MyTable.php, (*9)

<?php
namespace Application\Model\Table;

use Armenio\Cake\ORM\Table;

class MyTable extends Table
{
    // ...
}

See more here: http://book.cakephp.org/3.0/en/orm.html, (*10)

How to use

<?php
use Armenio\Cake\ORM\TableManager;

$tableManager = new TableManager();

$table = $tableManager->get('MyTable');

$items = $table->find('all')->all();

foreach ($items as $row) {
    var_dump($row);
}

The Versions

27/04 2017

dev-master

9999999-dev https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

27/04 2017

1.5.3

1.5.3.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

25/04 2017

1.5.2

1.5.2.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

05/12 2016

1.5.1

1.5.1.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

21/11 2016

1.5

1.5.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

14/08 2016

1.4.1

1.4.1.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

13/08 2016

1.3

1.3.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

13/08 2016

1.4

1.4.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

12/08 2016

1.2.1

1.2.1.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

12/08 2016

1.2

1.2.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

10/08 2016

1.1.1

1.1.1.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

10/08 2016

1.1

1.1.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3

10/08 2016

1.0

1.0.0.0 https://github.com/armenio/zf3-cake-orm

The Cake ORM Module for Zend Framework 3

  Sources   Download

MIT

The Requires

 

by Rafael ArmĂȘnio

orm framework cakephp module zf3