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

This package is not auto-updated.

Last update: 2024-04-13 14:55:47 UTC


README

A mash-up of PHP's reflection library and Doctrine's annotation library.

Build Status MIT license

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';