arzynik / tipsy-doctrine
This package is abandoned and no longer maintained.
The author suggests using the https://github.com/tipsyphp/tipsy-doctrine package instead.
An doctrine extension for Tipsy
v1.0.1
2015-12-10 18:54 UTC
Requires
- doctrine/orm: ^2.5
- tipsyphp/tipsy: dev-master
This package is not auto-updated.
Last update: 2022-02-01 12:53:35 UTC
README
A doctrine adapter for Tipsy
Installation
vendor/bin/doctrine orm:schema-tool:update --force --dump-sql
Usage
Usage is similar to using Tipsy\Resource
.
- Create a doctrine model, for example in
model/Product.php
- Specify the path
Tipsy\Tipsy::config([doctrine => [model => 'models']]);
- Add a database config
Tipsy\Tipsy::config([db => [url => 'mysql://user:pass@host/dbname']]);
- Set the Resource
Tipsy::service('Product', '\Tipsy\Doctrine\Resource\Product');
- 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.