serafim / laravel-annotations
Laravel annotations bridge
1.0.6
2017-12-09 17:00 UTC
Requires
- doctrine/annotations: ~1.2
- doctrine/common: ~2.6
- illuminate/contracts: ~5.1
- illuminate/support: ~5.1
README
This is a Doctrine Annotations bridge for Laravel 5+
Installation
composer require serafim/laravel-annotations
In app.php
add:
'providers' => [
...
\Serafim\Annotations\LaravelServiceProvider::class,
]
Run php artisan vendor:publish
if you want configure default behaviuor
Usage
use octrine\Common\Annotations\Reader;
app(Reader::class)->getClassAnnotations($reflection);
// or app('annotations')->..
NOTE: For more information about annotations read: http://docs.doctrine-project.org/projects/doctrine-common/en/latest/reference/annotations.html