├── LICENSE ├── README.md ├── composer.json ├── runtime └── php-cs-fixer.cache └── src ├── AnnotationReader.php ├── AttributeReader.php ├── Bridge └── DoctrineReaderBridge.php ├── Composite ├── Composite.php ├── MergeReader.php └── SelectiveReader.php ├── Exception ├── AttributeException.php ├── InitializationException.php ├── NotFoundException.php ├── SemanticAttributeException.php └── SyntaxAttributeException.php ├── Factory.php ├── FactoryInterface.php ├── Internal ├── AttributeReader.php ├── CachedReader.php ├── ContextRenderer.php ├── Decorator.php ├── DoctrineAnnotationReader.php ├── Exception.php ├── Instantiator │ ├── DoctrineInstantiator.php │ ├── Facade.php │ ├── Instantiator.php │ ├── InstantiatorInterface.php │ └── NamedArgumentsInstantiator.php ├── Key │ ├── ConcatKeyGenerator.php │ ├── HashKeyGenerator.php │ ├── KeyGeneratorInterface.php │ ├── ModificationTimeKeyGenerator.php │ └── NameKeyGenerator.php └── NativeAttributeReader.php ├── NamedArgumentConstructor.php ├── NamedArgumentConstructorAttribute.php ├── Psr16CachedReader.php ├── Psr6CachedReader.php ├── Reader.php ├── ReaderAwareInterface.php ├── ReaderAwareTrait.php ├── ReaderInterface.php └── polyfill.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/composer.json -------------------------------------------------------------------------------- /runtime/php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/runtime/php-cs-fixer.cache -------------------------------------------------------------------------------- /src/AnnotationReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/AnnotationReader.php -------------------------------------------------------------------------------- /src/AttributeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/AttributeReader.php -------------------------------------------------------------------------------- /src/Bridge/DoctrineReaderBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Bridge/DoctrineReaderBridge.php -------------------------------------------------------------------------------- /src/Composite/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Composite/Composite.php -------------------------------------------------------------------------------- /src/Composite/MergeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Composite/MergeReader.php -------------------------------------------------------------------------------- /src/Composite/SelectiveReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Composite/SelectiveReader.php -------------------------------------------------------------------------------- /src/Exception/AttributeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Exception/AttributeException.php -------------------------------------------------------------------------------- /src/Exception/InitializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Exception/InitializationException.php -------------------------------------------------------------------------------- /src/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Exception/SemanticAttributeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Exception/SemanticAttributeException.php -------------------------------------------------------------------------------- /src/Exception/SyntaxAttributeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Exception/SyntaxAttributeException.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/FactoryInterface.php -------------------------------------------------------------------------------- /src/Internal/AttributeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/AttributeReader.php -------------------------------------------------------------------------------- /src/Internal/CachedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/CachedReader.php -------------------------------------------------------------------------------- /src/Internal/ContextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/ContextRenderer.php -------------------------------------------------------------------------------- /src/Internal/Decorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Decorator.php -------------------------------------------------------------------------------- /src/Internal/DoctrineAnnotationReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/DoctrineAnnotationReader.php -------------------------------------------------------------------------------- /src/Internal/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Exception.php -------------------------------------------------------------------------------- /src/Internal/Instantiator/DoctrineInstantiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Instantiator/DoctrineInstantiator.php -------------------------------------------------------------------------------- /src/Internal/Instantiator/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Instantiator/Facade.php -------------------------------------------------------------------------------- /src/Internal/Instantiator/Instantiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Instantiator/Instantiator.php -------------------------------------------------------------------------------- /src/Internal/Instantiator/InstantiatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Instantiator/InstantiatorInterface.php -------------------------------------------------------------------------------- /src/Internal/Instantiator/NamedArgumentsInstantiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Instantiator/NamedArgumentsInstantiator.php -------------------------------------------------------------------------------- /src/Internal/Key/ConcatKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Key/ConcatKeyGenerator.php -------------------------------------------------------------------------------- /src/Internal/Key/HashKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Key/HashKeyGenerator.php -------------------------------------------------------------------------------- /src/Internal/Key/KeyGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Key/KeyGeneratorInterface.php -------------------------------------------------------------------------------- /src/Internal/Key/ModificationTimeKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Key/ModificationTimeKeyGenerator.php -------------------------------------------------------------------------------- /src/Internal/Key/NameKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/Key/NameKeyGenerator.php -------------------------------------------------------------------------------- /src/Internal/NativeAttributeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Internal/NativeAttributeReader.php -------------------------------------------------------------------------------- /src/NamedArgumentConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/NamedArgumentConstructor.php -------------------------------------------------------------------------------- /src/NamedArgumentConstructorAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/NamedArgumentConstructorAttribute.php -------------------------------------------------------------------------------- /src/Psr16CachedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Psr16CachedReader.php -------------------------------------------------------------------------------- /src/Psr6CachedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Psr6CachedReader.php -------------------------------------------------------------------------------- /src/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/Reader.php -------------------------------------------------------------------------------- /src/ReaderAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/ReaderAwareInterface.php -------------------------------------------------------------------------------- /src/ReaderAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/ReaderAwareTrait.php -------------------------------------------------------------------------------- /src/ReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/ReaderInterface.php -------------------------------------------------------------------------------- /src/polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/attributes/HEAD/src/polyfill.php --------------------------------------------------------------------------------