anhoder/annotations-collector

This package is abandoned and no longer maintained. The author suggests using the yarfox/attributes-collector package instead.

PHP8 Attribute Collector.

1.1.2 2022-07-23 12:02 UTC

This package is auto-updated.

Last update: 2022-07-24 07:25:50 UTC


README

PHP8 attribute collector.

Required

  • php>=8

Install

composer require yarfox/attributes-collector

Usage

  1. Install
  2. Add php file AttributeConfig.php to your project.
class AttributeConfig implements ConfigInterface
{
    #[ArrayShape(['scanDirs' => 'array'])]
    public static function getAttributeConfigs(): array
    {
        return [
            'scanDirs' => [
                __NAMESPACE__ => __DIR__,
            ],
        ];
    }
}
  1. Add attribute and attribute handler.
// Attribute
#[Attribute(Attribute::TARGET_CLASS)]
class ClassAttribute
{
    public const TEST = 'test';

    private string $test;

    public function __construct(#[ExpectedValues(valuesFromClass: ClassAttribute::class)] string $test)
    {
        $this->test = $test;
    }

    public function getTest(): string
    {
        return $this->test;
    }
}

// AttributeHandler
#[AttributeHandler(ClassAttribute::class)]
class ClassAttributeHandler extends AbstractHandler
{
    public function handle(): void
    {
        /**
         * @var $attribute ClassAttribute
         */
        var_dump($this);
        $attribute = $this->attribute;
        var_dump($attribute->getTest());
    }
}
  1. Use Attribute
#[ClassAttribute(ClassAttribute::TEST)]
class ClassAttributeTest
{

}
  1. Start scan.
AttributeKeeper::bootloader();
AttributeKeeper::collect();

Example

attributes-collector-example