Skip to content

tipsyphp/tipsy-doctrine

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 

Tipsy Doctrine

A doctrine adapter for Tipsy

Installation

  1. vendor/bin/doctrine orm:schema-tool:update --force --dump-sql

Usage

Usage is similar to using Tipsy\Resource.

  1. Create a doctrine model, for example in model/Product.php
  2. Specify the path
Tipsy\Tipsy::config([doctrine => [model => 'models']]);
  1. Add a database config
Tipsy\Tipsy::config([db => [url => 'mysql://user:pass@host/dbname']]);
  1. Set the Resource
Tipsy::service('Product', '\Tipsy\Doctrine\Resource\Product');
  1. Use DI to access the object
Tipsy\Tipsy::router()->home(function($Product) {
  $p = $Product->create([
    name => 'test'
  ]);
});

See Tipsy Doctrine Example for a more detailed example.

You can also access the Doctrine DB and entityManager objects using any of the following:

Tipsy\Tipsy::db()->db();
Tipsy\Tipsy::db()->entityManager();
$Db;
$Db->entityManager();

Info

See Tipsy Documentation for more information on Tipsy.

See Getting Started for more info on Doctrine.