PHP Package: doctrine/orm

doctrine ORM is a powerful tool for mapping objects to a relational database. It simplifies the data manipulation process and enhances data management capabilities in PHP applications.

Current Version: 3.4.0
Last Updated: 2025-06-14
PHP Requirement: ^8.1
Dependencies:
doctrine/common
doctrine/dbal
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

doctrine ORM is a robust object-relational mapping library that provides efficient database operations in PHP. It offers seamless integration with various database systems, enabling developers to build scalable and maintainable applications. With its extensive features and flexibility, doctrine ORM simplifies the development process and optimizes database interactions for improved performance.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 3.4.0

Download Download v3.4.0

Previous Versions

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.4.0/loader.php';
require_once 'libs/doctrine/common/3.5.0/loader.php';
require_once 'libs/doctrine/dbal/4.2.3/loader.php';

use Doctrine\ORM\EntityManager;
use Doctrine\DBAL\Connection;

$obj = new EntityManager();
echo '✅ Test OK: ' . get_class($obj);
?>

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

Community Discussion

Ask questions, share tips, or report issues below.