├── .github ├── .kodiak.toml └── workflows │ ├── codesniffer.yml │ ├── coverage.yml │ ├── phpstan.yml │ └── tests.yml ├── LICENSE ├── composer.json └── src └── DI └── AnnotationsExtension.php /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/workflows/codesniffer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/.github/workflows/codesniffer.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/composer.json -------------------------------------------------------------------------------- /src/DI/AnnotationsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/doctrine-annotations/HEAD/src/DI/AnnotationsExtension.php --------------------------------------------------------------------------------