Bookmarks tagged with #doctrine.
Show all
Show all
Using traits to compose your Doctrine entities – Titouan Galopin – Medium
Traits were introduced in PHP 5.4 (6 years ago) as a way to compose classes without relying on inheritance (in opposition to the ability to extends multiple classes like in C++). This feature of PHP…
Saved
on: 2018-08-21
When do I start to see the benefits of Doctrine? : r/PHP
Saved
on: 2016-06-15
Doctrine ORM Hydration Performance Optimization
Hydration is the most expensive operation performed by Doctrine ORM: how do we prevent it from killing our applications?
Saved
on: 2015-04-14
Of course I have a backup! › A few years with Doctrine2
I have been using Doctrine2 for about 3 years now. I started with the first 2.0 stable, integrating it into my employer's in-house framework, and in the last year, I have been using it as part of Symfony2. There are quite a few things that I love about it, and a small amount that I dislike.
Saved
on: 2015-01-21
Getting started with Doctrine 2 and Laravel | Culttt
This Building Cribbb series of tutorials explains the advantages of using Doctrine 2 ORM instead of Eloquent, which is included in Laravel.
Saved
on: 2015-01-04
PHP Schema: generate a fully functional PHP / Doctrine / Symfony data model
PHP Schema is a code generator that instantly generates a PHP data model from the Schema.org vocabulary : browse Schema.org, choose the types and properties you need, run our code generator and you're done! You get a fully featured PHP data model including: A set of PHP entities with properties, constants (enum values), getters, setters, adders and
Saved
on: 2014-12-16
Doctrine 2 Tutorials: Installation and Configuration | Zainul Abedin Tutori
Introduction In this tutorial, we will look at how to install Doctrine2 in your PHP project.
This post will make use of Doctrine2’s Composer tool.
Installation First, create a directory for your project.
mkdir zainabed cd zainabed Now, create a composer.json file.
vi composer.json Then, add the following repository information to it.
{ "require": { "doctrine/orm": "*" } } You are now ready to use Composer to install Doctrine, but first you must install Composer on your machine.
Saved
on: 2014-11-21
Can anyone recommend any Doctrine 2 ORM tutorials? : r/PHP
Saved
on: 2014-06-29
Pursuing Domain-Driven Design practices in PHP
The document discusses pursuing Domain-Driven Design practices in PHP. It covers building blocks like entities, value objects, aggregates, repositories, factories and services. It also discusses data modeling approaches like moving from active record to data mapper patterns. The document provides examples of implementing these concepts in PHP using annotations and libraries like Doctrine. It aims to help structure applications around the domain model and apply DDD practices like ubiquitous language in PHP projects.
Saved
on: 2014-04-28
6. Association Mapping — Doctrine 2 ORM 2 documentation
Doctrine Object Relational Mapper Documentation: Association Mapping
Saved
on: 2014-04-27