kohana/doctrine

Kohana module for integrating doctrine into kohana

0.1 2016-03-20 14:40 UTC

This package is auto-updated.

Last update: 2024-04-11 13:02:41 UTC


README

Build Status

The doctrine library for Kohana 3 provides a simple integration with doctrine 2.*. You can configure your doctrine integration by placing the config/doctrine.php file into your app/config folder and editing it.

Supported mapping solutions

Currently this module supports the following mapping methods.

  1. Annotation
  2. Xml
  3. Yaml

Supported caching solutions

Currently this module supports the following caching methods.

  1. Apc
  2. Array
  3. Memcache
  4. Redis
  5. Xcache

Using Doctrine

To use Kohana Doctrine, install it by composer require. You can do this by running composer require kohana/doctrine in your CLI. Then add Kohana Doctrine to your modules in bootstrap.php by adding the following line 'doctrine' => VENDORPATH.'kohana/doctrine'.

To configure doctrine copy the vendor/kohana/doctrine/config/doctrine.php or your app/config folder and editing it.

Quick example

The following is a quick example of how to use Kohana Doctrine by getting the entity manager and getting a repository from the entity manager.

$entityManager = \Kohana\Doctrine\EntityManager::instance();
$entityManager->getRepository('Full\Namespace\To\Entity')