PHP Package: doctrine/orm

powerful PHP library for object-relational mapping with high performance and flexibility, ideal for database management in web applications

Current Version: 3.3.2
Last Updated: 2025-02-05
PHP Requirement: >=7.1
Dependencies: psr/log
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Doctrine ORM is a feature-rich PHP library that provides a seamless bridge between the database and object-oriented programming. It offers advanced features like entity mapping, lazy loading, and query building, making it a top choice for developers seeking efficient database management solutions in their web applications.

🔗 View on GitHub

Download Latest Version: 3.3.2

Download Download v3.3.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/doctrine/orm/3.3.2/autoload.php';

use Doctrine\ORM\EntityManager;
use Doctrine\ORM\QueryBuilder;
use Doctrine\ORM\Mapping\ClassMetadata;
use Psr\Log\LoggerInterface;


$obj = new Doctrine\ORM\EntityManager();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.