headzoo / annotated-reflection
A mash-up of PHP's reflection library and Doctrine's annotation library.
0.3.1
2015-03-12 02:20 UTC
Requires
- php: >=5.5.0
- doctrine/annotations: 1.2.3
- doctrine/cache: 1.4.0
Requires (Dev)
- phpunit/phpunit: 4.4.*
README
A mash-up of PHP's reflection library and Doctrine's annotation library.
Installing via Composer
The recommended way to install headzoo/annotated-reflection is through Composer.
# Install Composer curl -sS https://getcomposer.org/installer | php
Add headzoo/annotated-reflection to your composer.json:
"require": { "headzoo/annotated-reflection": "dev-master" }
Or run the Composer command to install the latest stable version of headzoo/annotated-reflection:
composer require headzoo/annotated-reflection
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';