├── LICENSE ├── composer.json ├── phpunit.xml.dist └── src ├── AnnotationsBag.php ├── Cache ├── ApcCache.php ├── ArrayCache.php └── FileCache.php ├── DynamicParser.php ├── Interfaces ├── AnnotationsBagInterface.php ├── CacheInterface.php ├── ParserInterface.php ├── ReaderInterface.php └── TypeInterface.php ├── Parser.php ├── ParserException.php ├── Reader.php ├── Reflector └── ReflectionConst.php └── Types ├── ConcreteType.php ├── DynamicType.php ├── FloatType.php ├── IntegerType.php ├── JsonType.php └── StringType.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AnnotationsBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/AnnotationsBag.php -------------------------------------------------------------------------------- /src/Cache/ApcCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Cache/ApcCache.php -------------------------------------------------------------------------------- /src/Cache/ArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Cache/ArrayCache.php -------------------------------------------------------------------------------- /src/Cache/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Cache/FileCache.php -------------------------------------------------------------------------------- /src/DynamicParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/DynamicParser.php -------------------------------------------------------------------------------- /src/Interfaces/AnnotationsBagInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Interfaces/AnnotationsBagInterface.php -------------------------------------------------------------------------------- /src/Interfaces/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Interfaces/CacheInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Interfaces/ParserInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Interfaces/ReaderInterface.php -------------------------------------------------------------------------------- /src/Interfaces/TypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Interfaces/TypeInterface.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/ParserException.php -------------------------------------------------------------------------------- /src/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Reader.php -------------------------------------------------------------------------------- /src/Reflector/ReflectionConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Reflector/ReflectionConst.php -------------------------------------------------------------------------------- /src/Types/ConcreteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/ConcreteType.php -------------------------------------------------------------------------------- /src/Types/DynamicType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/DynamicType.php -------------------------------------------------------------------------------- /src/Types/FloatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/FloatType.php -------------------------------------------------------------------------------- /src/Types/IntegerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/IntegerType.php -------------------------------------------------------------------------------- /src/Types/JsonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/JsonType.php -------------------------------------------------------------------------------- /src/Types/StringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/annotations/HEAD/src/Types/StringType.php --------------------------------------------------------------------------------