You are browsing a version that is no longer maintained.

Introduction

DoctrineModule provides a bridge between Laminas and Doctrine. It gives you access to features that can be used across Doctrine ORM as well as Doctrine MongoDB ODM. It provides an abstraction layer on top of Doctrine\Common which allows the end user to build functionality being completely unaware if he’s currently working with Doctrine ORM or Doctrine MongoDB ODM.

To use Doctrine ORM or ODM, you will need DoctrineORMModule or DoctrineMongoODMModule respectively.

Installation

Run the following to install this library using Composer:

$ composer require doctrine/doctrine-module

Next Steps

You can find more details about the features offered by DoctrineModule:

  • Authentication documentation: this explains how you can use the DoctrineModule authentication adapter and authentication storage adapter to provide a simple way to authenticate users using Doctrine.
  • Caching documentation: DoctrineModule provides simple classes to allow easier caching using Doctrine.
  • CLI documentation: learn how to use the Doctrine 2 command line tool, and how to add your own command.
  • Form elements: if you are using Laminas Forms, this module provides select, radio and checkbox elements for selecting objects from relationships.
  • Hydrator documentation: if you are using Laminas Forms, doctrine-laminas-hydrator provides a powerful hydrator that allows you to easily deal with OneToOne, OneToMany and ManyToOne relationships when using forms.
  • Paginator documentation: discover how to use the DoctrineModule Paginator adapter.
  • Validator documentation: this chapter explains how to use ObjectExists and NoObjectExists validator, that allow you to easily validate if a given entity exists or not.