PHP Package: doctrine/reflection

Doctrine Reflection is a PHP library for powerful and efficient reflection of PHP classes and objects.

Current Version: 1.2.4
Last Updated: 2023-07-27
PHP Requirement: ^7.1 || ^8.0
Dependencies:
doctrine/annotations
doctrine/cache
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Doctrine Reflection provides a comprehensive toolkit for PHP developers to perform advanced reflection tasks on classes, properties, and methods with ease and efficiency. This library empowers developers to introspect and manipulate PHP code dynamically, enhancing the capabilities of their applications.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 1.2.4

Download Download v1.2.4

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/reflection/1.2.4/loader.php';
require_once 'libs/doctrine/annotations/2.0.2/loader.php';
require_once 'libs/doctrine/cache/2.2.0/loader.php';

use Doctrine\Reflection\ReflectionClass;
use Doctrine\Reflection\ReflectionProperty;

$obj = new ReflectionClass();
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.