Skip to content

neronplex/cake-orm-enabler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cake-orm-enabler

cake-orm-enabler is a package to enable the cakephp/orm in Laravel.

Requirements

Installing your project

Install via Composer

$ composer require neronplex/cake-orm-enabler

Adding Service Provider

In the case of Laravel.

// providers array in config/app.php
Neronplex\CakeORMEnabler\ServiceProvider::class,

In the case of Lumen.

// add line in bootstrap/app.php
$app->register(Neronplex\CakeORMEnabler\ServiceProvider::class);

Adding Facade

In the case of Laravel.

// aliases array in config/app.php
'aliases' => [
    // other facades...
    'TableRegistry' => Neronplex\CakeORMEnabler\Facades\TableRegistry::class,
],

In the case of Lumen.

// add line in bootstrap/app.php (5.2 or earlier)
if (!class_exists('TableRegistry'))
{
    class_alias('Neronplex\CakeORMEnabler\Facades\TableRegistry', 'TableRegistry');
}
  
// add line in bootstrap/app.php (5.3 or later)
$app->withFacades(TRUE, [
    // other facades...
    'Neronplex\CakeORMEnabler\Facades\TableRegistry' => 'TableRegistry',
]);

Usage

How to use the ORM case refer to the official reference.

License

Copyright © 2016 暖簾 (@neronplex) Licensed under the [Apache License, Version 2.0][Apache] [Apache]: http://www.apache.org/licenses/LICENSE-2.0

About

CakePHP ORM enabler for Laravel & Lumen

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages