├── .github └── workflows │ ├── ci.yml │ └── coverage.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── zf-dependency-injection-cache-warmup ├── composer.json ├── config └── module.config.php ├── docs └── Yaml.md ├── ecs.php ├── infection.json.dist ├── phpstan-extension.neon ├── phpstan.neon ├── phpunit.xml ├── rector.config.php ├── renovate.json ├── src ├── AbstractFactory │ ├── Config │ │ └── InjectConfigAbstractFactory.php │ └── FallbackAutoWiringFactory.php ├── Annotation │ ├── AbstractAnnotation.php │ ├── AbstractInjectPluginManager.php │ ├── AnnotationInterface.php │ ├── Inject.php │ ├── InjectConfig.php │ ├── InjectConstant.php │ ├── InjectContainer.php │ ├── InjectControllerPlugin.php │ ├── InjectDoctrineRepository.php │ ├── InjectFilter.php │ ├── InjectFormElement.php │ ├── InjectHydrator.php │ ├── InjectInputFilter.php │ ├── InjectParent.php │ ├── InjectValidator.php │ └── InjectViewHelper.php ├── Attribute │ ├── AbstractAttribute.php │ ├── AbstractInjectPluginManager.php │ ├── Inject.php │ ├── InjectConfig.php │ ├── InjectConstant.php │ ├── InjectContainer.php │ ├── InjectControllerPlugin.php │ ├── InjectDoctrineRepository.php │ ├── InjectFilter.php │ ├── InjectFormElement.php │ ├── InjectHydrator.php │ ├── InjectInputFilter.php │ ├── InjectParent.php │ ├── InjectValidator.php │ └── InjectViewHelper.php ├── Command │ └── CacheWarmupCommand.php ├── Config │ ├── Factory │ │ └── ModuleConfigFactory.php │ └── ModuleConfig.php ├── ConfigProvider.php ├── Exception │ ├── AutoWiringNotPossibleException.php │ ├── ConfigPathNotFoundException.php │ ├── InjectionNotPossibleException.php │ └── InjectionTypeUnknownException.php ├── Extension │ ├── PHPStan │ │ ├── Resolve │ │ │ ├── AutoWiringClassesResolver.php │ │ │ └── AutoWiringPossibleResolver.php │ │ ├── Rules │ │ │ └── AutoWiringPossibleRule.php │ │ └── ServiceManagerLoader.php │ └── Rector │ │ └── Set │ │ ├── ReinfiDependencyInjectionSetList.php │ │ └── config │ │ ├── annotation-to-attribute.php │ │ └── reinfi-dependency-injection-70.php ├── Factory │ ├── AbstractFactory.php │ ├── AutoWiringFactory.php │ └── InjectionFactory.php ├── Injection │ ├── AutoWiring.php │ ├── AutoWiringContainer.php │ ├── AutoWiringPluginManager.php │ ├── ContainerTrait.php │ ├── InjectionInterface.php │ └── Value.php ├── Module.php ├── Service │ ├── AutoWiring │ │ ├── Factory │ │ │ ├── LazyResolverServiceFactory.php │ │ │ └── ResolverServiceFactory.php │ │ ├── LazyResolverService.php │ │ ├── Resolver │ │ │ ├── BuildInTypeWithDefaultResolver.php │ │ │ ├── ContainerInterfaceResolver.php │ │ │ ├── ContainerResolver.php │ │ │ ├── Factory │ │ │ │ ├── ContainerResolverFactory.php │ │ │ │ ├── PluginManagerResolverFactory.php │ │ │ │ └── TranslatorResolverFactory.php │ │ │ ├── PluginManagerResolver.php │ │ │ ├── RequestResolver.php │ │ │ ├── ResolverInterface.php │ │ │ ├── ResponseResolver.php │ │ │ └── TranslatorResolver.php │ │ ├── ResolverService.php │ │ └── ResolverServiceInterface.php │ ├── AutoWiringService.php │ ├── Cache │ │ └── Memory.php │ ├── CacheService.php │ ├── ConfigService.php │ ├── Extractor │ │ ├── AnnotationExtractor.php │ │ ├── AttributeExtractor.php │ │ ├── ExtractorChain.php │ │ ├── ExtractorInterface.php │ │ ├── Factory │ │ │ ├── AnnotationExtractorFactory.php │ │ │ ├── ExtractorFactory.php │ │ │ └── YamlExtractorFactory.php │ │ └── YamlExtractor.php │ ├── Factory │ │ ├── AutoWiringServiceFactory.php │ │ ├── CacheServiceFactory.php │ │ ├── ConfigServiceFactory.php │ │ └── InjectionServiceFactory.php │ └── InjectionService.php └── Traits │ ├── CacheKeyTrait.php │ └── WarmupTrait.php └── test ├── Base └── AbstractIntegration.php ├── Integration ├── Command │ └── CacheWarmupCommandTest.php └── Factory │ ├── AutoWiringFactoryTest.php │ └── InjectionFactoryTest.php ├── Service ├── BadInjectionClass.php ├── Factory │ └── Service3Factory.php ├── NoPluginManagerAttribute.php ├── PluginService.php ├── Resolver │ └── TestResolver.php ├── Service1.php ├── Service2.php ├── Service3.php ├── ServiceAnnotation.php ├── ServiceAnnotationConstructor.php ├── ServiceAttribute.php ├── ServiceAttributeConstructor.php ├── ServiceBuildInType.php ├── ServiceBuildInTypeWithDefault.php ├── ServiceBuildInTypeWithDefaultUsingConstant.php ├── ServiceContainer.php ├── ServiceInterface.php ├── ServiceNoTypeHint.php └── ServiceWithInterface.php ├── Unit ├── AbstractFactory │ └── Config │ │ └── InjectConfigAbstractFactoryTest.php ├── Annotation │ ├── InjectConfigTest.php │ ├── InjectConstantTest.php │ ├── InjectContainerTest.php │ ├── InjectControllerPluginTest.php │ ├── InjectDoctrineRepositoryTest.php │ ├── InjectFilterTest.php │ ├── InjectFormElementTest.php │ ├── InjectHydratorTest.php │ ├── InjectInputFilterTest.php │ ├── InjectParentTest.php │ ├── InjectTest.php │ ├── InjectValidatorTest.php │ └── InjectViewHelperTest.php ├── Attribute │ ├── AbstractInjectPluginManagerTest.php │ ├── InjectConfigTest.php │ ├── InjectConstantTest.php │ ├── InjectContainerTest.php │ ├── InjectControllerPluginTest.php │ ├── InjectDoctrineRepositoryTest.php │ ├── InjectFilterTest.php │ ├── InjectFormElementTest.php │ ├── InjectHydratorTest.php │ ├── InjectInputFilterTest.php │ ├── InjectParentTest.php │ ├── InjectTest.php │ ├── InjectValidatorTest.php │ └── InjectViewHelperTest.php ├── Config │ └── Factory │ │ └── ModuleConfigFactoryTest.php ├── ConfigProviderTest.php ├── Extension │ └── PHPStan │ │ └── Resolve │ │ └── AutoWiringClassesResolverTest.php ├── Factory │ ├── AutoWiringFactoryTest.php │ └── InjectionFactoryTest.php ├── Injection │ ├── AutoWiringContainerTest.php │ ├── AutoWiringPluginManagerTest.php │ └── AutoWiringTest.php ├── ModuleTest.php └── Service │ ├── AutoWiring │ ├── Factory │ │ └── ResolverServiceFactoryTest.php │ ├── LazyResolverServiceTest.php │ ├── Resolver │ │ ├── BuildInTypeWithDefaultResolverTest.php │ │ ├── ContainerInterfaceResolverTest.php │ │ ├── ContainerResolverTest.php │ │ ├── Factory │ │ │ ├── ContainerResolverFactoryTest.php │ │ │ ├── PluginManagerResolverFactoryTest.php │ │ │ └── TranslatorResolverFactoryTest.php │ │ ├── PluginManagerResolverTest.php │ │ ├── RequestResolverTest.php │ │ ├── ResponseResolverTest.php │ │ └── TranslatorResolverTest.php │ └── ResolverServiceTest.php │ ├── AutoWiringServiceTest.php │ ├── Cache │ └── MemoryTest.php │ ├── CacheServiceTest.php │ ├── ConfigServiceTest.php │ ├── Extractor │ ├── AnnotationExtractorTest.php │ ├── AttributeExtractorTest.php │ ├── ExtractorChainTest.php │ ├── Factory │ │ ├── AnnotationExtractorFactoryTest.php │ │ ├── ExtractorFactoryTest.php │ │ └── YamlExtractorFactoryTest.php │ └── YamlExtractorTest.php │ ├── Factory │ └── CacheServiceFactoryTest.php │ └── InjectionServiceTest.php └── resources ├── application_config.php ├── bad_services.yml ├── config.php ├── container.php └── services.yml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/README.md -------------------------------------------------------------------------------- /bin/zf-dependency-injection-cache-warmup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/bin/zf-dependency-injection-cache-warmup -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/composer.json -------------------------------------------------------------------------------- /config/module.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/config/module.config.php -------------------------------------------------------------------------------- /docs/Yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/docs/Yaml.md -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/ecs.php -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/infection.json.dist -------------------------------------------------------------------------------- /phpstan-extension.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/phpstan-extension.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/phpunit.xml -------------------------------------------------------------------------------- /rector.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/rector.config.php -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/renovate.json -------------------------------------------------------------------------------- /src/AbstractFactory/Config/InjectConfigAbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/AbstractFactory/Config/InjectConfigAbstractFactory.php -------------------------------------------------------------------------------- /src/AbstractFactory/FallbackAutoWiringFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/AbstractFactory/FallbackAutoWiringFactory.php -------------------------------------------------------------------------------- /src/Annotation/AbstractAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/AbstractAnnotation.php -------------------------------------------------------------------------------- /src/Annotation/AbstractInjectPluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/AbstractInjectPluginManager.php -------------------------------------------------------------------------------- /src/Annotation/AnnotationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/AnnotationInterface.php -------------------------------------------------------------------------------- /src/Annotation/Inject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/Inject.php -------------------------------------------------------------------------------- /src/Annotation/InjectConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectConfig.php -------------------------------------------------------------------------------- /src/Annotation/InjectConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectConstant.php -------------------------------------------------------------------------------- /src/Annotation/InjectContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectContainer.php -------------------------------------------------------------------------------- /src/Annotation/InjectControllerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectControllerPlugin.php -------------------------------------------------------------------------------- /src/Annotation/InjectDoctrineRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectDoctrineRepository.php -------------------------------------------------------------------------------- /src/Annotation/InjectFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectFilter.php -------------------------------------------------------------------------------- /src/Annotation/InjectFormElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectFormElement.php -------------------------------------------------------------------------------- /src/Annotation/InjectHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectHydrator.php -------------------------------------------------------------------------------- /src/Annotation/InjectInputFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectInputFilter.php -------------------------------------------------------------------------------- /src/Annotation/InjectParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectParent.php -------------------------------------------------------------------------------- /src/Annotation/InjectValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectValidator.php -------------------------------------------------------------------------------- /src/Annotation/InjectViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Annotation/InjectViewHelper.php -------------------------------------------------------------------------------- /src/Attribute/AbstractAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/AbstractAttribute.php -------------------------------------------------------------------------------- /src/Attribute/AbstractInjectPluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/AbstractInjectPluginManager.php -------------------------------------------------------------------------------- /src/Attribute/Inject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/Inject.php -------------------------------------------------------------------------------- /src/Attribute/InjectConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectConfig.php -------------------------------------------------------------------------------- /src/Attribute/InjectConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectConstant.php -------------------------------------------------------------------------------- /src/Attribute/InjectContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectContainer.php -------------------------------------------------------------------------------- /src/Attribute/InjectControllerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectControllerPlugin.php -------------------------------------------------------------------------------- /src/Attribute/InjectDoctrineRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectDoctrineRepository.php -------------------------------------------------------------------------------- /src/Attribute/InjectFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectFilter.php -------------------------------------------------------------------------------- /src/Attribute/InjectFormElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectFormElement.php -------------------------------------------------------------------------------- /src/Attribute/InjectHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectHydrator.php -------------------------------------------------------------------------------- /src/Attribute/InjectInputFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectInputFilter.php -------------------------------------------------------------------------------- /src/Attribute/InjectParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectParent.php -------------------------------------------------------------------------------- /src/Attribute/InjectValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectValidator.php -------------------------------------------------------------------------------- /src/Attribute/InjectViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Attribute/InjectViewHelper.php -------------------------------------------------------------------------------- /src/Command/CacheWarmupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Command/CacheWarmupCommand.php -------------------------------------------------------------------------------- /src/Config/Factory/ModuleConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Config/Factory/ModuleConfigFactory.php -------------------------------------------------------------------------------- /src/Config/ModuleConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Config/ModuleConfig.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/AutoWiringNotPossibleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Exception/AutoWiringNotPossibleException.php -------------------------------------------------------------------------------- /src/Exception/ConfigPathNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Exception/ConfigPathNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/InjectionNotPossibleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Exception/InjectionNotPossibleException.php -------------------------------------------------------------------------------- /src/Exception/InjectionTypeUnknownException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Exception/InjectionTypeUnknownException.php -------------------------------------------------------------------------------- /src/Extension/PHPStan/Resolve/AutoWiringClassesResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/PHPStan/Resolve/AutoWiringClassesResolver.php -------------------------------------------------------------------------------- /src/Extension/PHPStan/Resolve/AutoWiringPossibleResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/PHPStan/Resolve/AutoWiringPossibleResolver.php -------------------------------------------------------------------------------- /src/Extension/PHPStan/Rules/AutoWiringPossibleRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/PHPStan/Rules/AutoWiringPossibleRule.php -------------------------------------------------------------------------------- /src/Extension/PHPStan/ServiceManagerLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/PHPStan/ServiceManagerLoader.php -------------------------------------------------------------------------------- /src/Extension/Rector/Set/ReinfiDependencyInjectionSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/Rector/Set/ReinfiDependencyInjectionSetList.php -------------------------------------------------------------------------------- /src/Extension/Rector/Set/config/annotation-to-attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/Rector/Set/config/annotation-to-attribute.php -------------------------------------------------------------------------------- /src/Extension/Rector/Set/config/reinfi-dependency-injection-70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Extension/Rector/Set/config/reinfi-dependency-injection-70.php -------------------------------------------------------------------------------- /src/Factory/AbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Factory/AbstractFactory.php -------------------------------------------------------------------------------- /src/Factory/AutoWiringFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Factory/AutoWiringFactory.php -------------------------------------------------------------------------------- /src/Factory/InjectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Factory/InjectionFactory.php -------------------------------------------------------------------------------- /src/Injection/AutoWiring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/AutoWiring.php -------------------------------------------------------------------------------- /src/Injection/AutoWiringContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/AutoWiringContainer.php -------------------------------------------------------------------------------- /src/Injection/AutoWiringPluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/AutoWiringPluginManager.php -------------------------------------------------------------------------------- /src/Injection/ContainerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/ContainerTrait.php -------------------------------------------------------------------------------- /src/Injection/InjectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/InjectionInterface.php -------------------------------------------------------------------------------- /src/Injection/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Injection/Value.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Factory/LazyResolverServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Factory/LazyResolverServiceFactory.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Factory/ResolverServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Factory/ResolverServiceFactory.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/LazyResolverService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/LazyResolverService.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/BuildInTypeWithDefaultResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/BuildInTypeWithDefaultResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/ContainerInterfaceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/ContainerInterfaceResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/ContainerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/ContainerResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/Factory/ContainerResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/Factory/ContainerResolverFactory.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/Factory/PluginManagerResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/Factory/PluginManagerResolverFactory.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/Factory/TranslatorResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/Factory/TranslatorResolverFactory.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/PluginManagerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/PluginManagerResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/RequestResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/RequestResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/ResolverInterface.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/ResponseResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/ResponseResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/Resolver/TranslatorResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/Resolver/TranslatorResolver.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/ResolverService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/ResolverService.php -------------------------------------------------------------------------------- /src/Service/AutoWiring/ResolverServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiring/ResolverServiceInterface.php -------------------------------------------------------------------------------- /src/Service/AutoWiringService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/AutoWiringService.php -------------------------------------------------------------------------------- /src/Service/Cache/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Cache/Memory.php -------------------------------------------------------------------------------- /src/Service/CacheService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/CacheService.php -------------------------------------------------------------------------------- /src/Service/ConfigService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/ConfigService.php -------------------------------------------------------------------------------- /src/Service/Extractor/AnnotationExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/AnnotationExtractor.php -------------------------------------------------------------------------------- /src/Service/Extractor/AttributeExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/AttributeExtractor.php -------------------------------------------------------------------------------- /src/Service/Extractor/ExtractorChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/ExtractorChain.php -------------------------------------------------------------------------------- /src/Service/Extractor/ExtractorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/ExtractorInterface.php -------------------------------------------------------------------------------- /src/Service/Extractor/Factory/AnnotationExtractorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/Factory/AnnotationExtractorFactory.php -------------------------------------------------------------------------------- /src/Service/Extractor/Factory/ExtractorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/Factory/ExtractorFactory.php -------------------------------------------------------------------------------- /src/Service/Extractor/Factory/YamlExtractorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/Factory/YamlExtractorFactory.php -------------------------------------------------------------------------------- /src/Service/Extractor/YamlExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Extractor/YamlExtractor.php -------------------------------------------------------------------------------- /src/Service/Factory/AutoWiringServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Factory/AutoWiringServiceFactory.php -------------------------------------------------------------------------------- /src/Service/Factory/CacheServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Factory/CacheServiceFactory.php -------------------------------------------------------------------------------- /src/Service/Factory/ConfigServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Factory/ConfigServiceFactory.php -------------------------------------------------------------------------------- /src/Service/Factory/InjectionServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/Factory/InjectionServiceFactory.php -------------------------------------------------------------------------------- /src/Service/InjectionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Service/InjectionService.php -------------------------------------------------------------------------------- /src/Traits/CacheKeyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Traits/CacheKeyTrait.php -------------------------------------------------------------------------------- /src/Traits/WarmupTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/src/Traits/WarmupTrait.php -------------------------------------------------------------------------------- /test/Base/AbstractIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Base/AbstractIntegration.php -------------------------------------------------------------------------------- /test/Integration/Command/CacheWarmupCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Integration/Command/CacheWarmupCommandTest.php -------------------------------------------------------------------------------- /test/Integration/Factory/AutoWiringFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Integration/Factory/AutoWiringFactoryTest.php -------------------------------------------------------------------------------- /test/Integration/Factory/InjectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Integration/Factory/InjectionFactoryTest.php -------------------------------------------------------------------------------- /test/Service/BadInjectionClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/BadInjectionClass.php -------------------------------------------------------------------------------- /test/Service/Factory/Service3Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/Factory/Service3Factory.php -------------------------------------------------------------------------------- /test/Service/NoPluginManagerAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/NoPluginManagerAttribute.php -------------------------------------------------------------------------------- /test/Service/PluginService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/PluginService.php -------------------------------------------------------------------------------- /test/Service/Resolver/TestResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/Resolver/TestResolver.php -------------------------------------------------------------------------------- /test/Service/Service1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/Service1.php -------------------------------------------------------------------------------- /test/Service/Service2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/Service2.php -------------------------------------------------------------------------------- /test/Service/Service3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/Service3.php -------------------------------------------------------------------------------- /test/Service/ServiceAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceAnnotation.php -------------------------------------------------------------------------------- /test/Service/ServiceAnnotationConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceAnnotationConstructor.php -------------------------------------------------------------------------------- /test/Service/ServiceAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceAttribute.php -------------------------------------------------------------------------------- /test/Service/ServiceAttributeConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceAttributeConstructor.php -------------------------------------------------------------------------------- /test/Service/ServiceBuildInType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceBuildInType.php -------------------------------------------------------------------------------- /test/Service/ServiceBuildInTypeWithDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceBuildInTypeWithDefault.php -------------------------------------------------------------------------------- /test/Service/ServiceBuildInTypeWithDefaultUsingConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceBuildInTypeWithDefaultUsingConstant.php -------------------------------------------------------------------------------- /test/Service/ServiceContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceContainer.php -------------------------------------------------------------------------------- /test/Service/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceInterface.php -------------------------------------------------------------------------------- /test/Service/ServiceNoTypeHint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceNoTypeHint.php -------------------------------------------------------------------------------- /test/Service/ServiceWithInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Service/ServiceWithInterface.php -------------------------------------------------------------------------------- /test/Unit/AbstractFactory/Config/InjectConfigAbstractFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/AbstractFactory/Config/InjectConfigAbstractFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectConfigTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectConstantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectConstantTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectContainerTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectControllerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectControllerPluginTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectDoctrineRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectDoctrineRepositoryTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectFilterTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectFormElementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectFormElementTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectHydratorTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectInputFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectInputFilterTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectParentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectParentTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectValidatorTest.php -------------------------------------------------------------------------------- /test/Unit/Annotation/InjectViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Annotation/InjectViewHelperTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/AbstractInjectPluginManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/AbstractInjectPluginManagerTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectConfigTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectConstantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectConstantTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectContainerTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectControllerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectControllerPluginTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectDoctrineRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectDoctrineRepositoryTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectFilterTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectFormElementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectFormElementTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectHydratorTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectInputFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectInputFilterTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectParentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectParentTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectValidatorTest.php -------------------------------------------------------------------------------- /test/Unit/Attribute/InjectViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Attribute/InjectViewHelperTest.php -------------------------------------------------------------------------------- /test/Unit/Config/Factory/ModuleConfigFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Config/Factory/ModuleConfigFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/ConfigProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/ConfigProviderTest.php -------------------------------------------------------------------------------- /test/Unit/Extension/PHPStan/Resolve/AutoWiringClassesResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Extension/PHPStan/Resolve/AutoWiringClassesResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Factory/AutoWiringFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Factory/AutoWiringFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Factory/InjectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Factory/InjectionFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Injection/AutoWiringContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Injection/AutoWiringContainerTest.php -------------------------------------------------------------------------------- /test/Unit/Injection/AutoWiringPluginManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Injection/AutoWiringPluginManagerTest.php -------------------------------------------------------------------------------- /test/Unit/Injection/AutoWiringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Injection/AutoWiringTest.php -------------------------------------------------------------------------------- /test/Unit/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/ModuleTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Factory/ResolverServiceFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Factory/ResolverServiceFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/LazyResolverServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/LazyResolverServiceTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/BuildInTypeWithDefaultResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/BuildInTypeWithDefaultResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/ContainerInterfaceResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/ContainerInterfaceResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/ContainerResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/ContainerResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/Factory/ContainerResolverFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/Factory/ContainerResolverFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/Factory/PluginManagerResolverFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/Factory/PluginManagerResolverFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/Factory/TranslatorResolverFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/Factory/TranslatorResolverFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/PluginManagerResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/PluginManagerResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/RequestResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/RequestResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/ResponseResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/ResponseResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/Resolver/TranslatorResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/Resolver/TranslatorResolverTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiring/ResolverServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiring/ResolverServiceTest.php -------------------------------------------------------------------------------- /test/Unit/Service/AutoWiringServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/AutoWiringServiceTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Cache/MemoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Cache/MemoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/CacheServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/CacheServiceTest.php -------------------------------------------------------------------------------- /test/Unit/Service/ConfigServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/ConfigServiceTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/AnnotationExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/AnnotationExtractorTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/AttributeExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/AttributeExtractorTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/ExtractorChainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/ExtractorChainTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/Factory/AnnotationExtractorFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/Factory/AnnotationExtractorFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/Factory/ExtractorFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/Factory/ExtractorFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/Factory/YamlExtractorFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/Factory/YamlExtractorFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Extractor/YamlExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Extractor/YamlExtractorTest.php -------------------------------------------------------------------------------- /test/Unit/Service/Factory/CacheServiceFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/Factory/CacheServiceFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Service/InjectionServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/Unit/Service/InjectionServiceTest.php -------------------------------------------------------------------------------- /test/resources/application_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/resources/application_config.php -------------------------------------------------------------------------------- /test/resources/bad_services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/resources/bad_services.yml -------------------------------------------------------------------------------- /test/resources/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/resources/config.php -------------------------------------------------------------------------------- /test/resources/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/resources/container.php -------------------------------------------------------------------------------- /test/resources/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinfi/zf-dependency-injection/HEAD/test/resources/services.yml --------------------------------------------------------------------------------