├── COPYRIGHT.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock └── src ├── AbstractFactory ├── ConfigAbstractFactory.php └── ReflectionBasedAbstractFactory.php ├── AbstractPluginManager.php ├── AbstractSingleInstancePluginManager.php ├── Command ├── AheadOfTimeFactoryCreatorCommand.php ├── AheadOfTimeFactoryCreatorCommandFactory.php ├── ConfigDumperCommand.php ├── ConfigDumperCommandFactory.php ├── FactoryCreatorCommand.php └── FactoryCreatorCommandFactory.php ├── ConfigProvider.php ├── Exception ├── ContainerModificationsNotAllowedException.php ├── CyclicAliasException.php ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── InvalidServiceException.php ├── RuntimeException.php ├── ServiceNotCreatedException.php └── ServiceNotFoundException.php ├── Factory ├── AbstractFactoryInterface.php ├── DelegatorFactoryInterface.php ├── FactoryInterface.php └── InvokableFactory.php ├── Initializer └── InitializerInterface.php ├── Module.php ├── PluginManagerInterface.php ├── Proxy └── LazyServiceFactory.php ├── ServiceLocatorInterface.php ├── ServiceManager.php ├── Test └── CommonPluginManagerTrait.php └── Tool ├── AheadOfTimeFactoryCompiler ├── AheadOfTimeCompiledFactory.php ├── AheadOfTimeFactoryCompiler.php ├── AheadOfTimeFactoryCompilerFactory.php └── AheadOfTimeFactoryCompilerInterface.php ├── ConfigDumper.php ├── ConfigDumperFactory.php ├── ConfigDumperInterface.php ├── ConstructorParameterResolver ├── ConstructorParameterResolver.php ├── ConstructorParameterResolverInterface.php ├── FallbackConstructorParameter.php └── ServiceFromContainerConstructorParameter.php ├── FactoryCreator.php ├── FactoryCreatorFactory.php └── FactoryCreatorInterface.php /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/composer.lock -------------------------------------------------------------------------------- /src/AbstractFactory/ConfigAbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/AbstractFactory/ConfigAbstractFactory.php -------------------------------------------------------------------------------- /src/AbstractFactory/ReflectionBasedAbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/AbstractFactory/ReflectionBasedAbstractFactory.php -------------------------------------------------------------------------------- /src/AbstractPluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/AbstractPluginManager.php -------------------------------------------------------------------------------- /src/AbstractSingleInstancePluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/AbstractSingleInstancePluginManager.php -------------------------------------------------------------------------------- /src/Command/AheadOfTimeFactoryCreatorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/AheadOfTimeFactoryCreatorCommand.php -------------------------------------------------------------------------------- /src/Command/AheadOfTimeFactoryCreatorCommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/AheadOfTimeFactoryCreatorCommandFactory.php -------------------------------------------------------------------------------- /src/Command/ConfigDumperCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/ConfigDumperCommand.php -------------------------------------------------------------------------------- /src/Command/ConfigDumperCommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/ConfigDumperCommandFactory.php -------------------------------------------------------------------------------- /src/Command/FactoryCreatorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/FactoryCreatorCommand.php -------------------------------------------------------------------------------- /src/Command/FactoryCreatorCommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Command/FactoryCreatorCommandFactory.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ContainerModificationsNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/ContainerModificationsNotAllowedException.php -------------------------------------------------------------------------------- /src/Exception/CyclicAliasException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/CyclicAliasException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/InvalidServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/InvalidServiceException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Exception/ServiceNotCreatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/ServiceNotCreatedException.php -------------------------------------------------------------------------------- /src/Exception/ServiceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Exception/ServiceNotFoundException.php -------------------------------------------------------------------------------- /src/Factory/AbstractFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Factory/AbstractFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/DelegatorFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Factory/DelegatorFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/InvokableFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Factory/InvokableFactory.php -------------------------------------------------------------------------------- /src/Initializer/InitializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Initializer/InitializerInterface.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/PluginManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/PluginManagerInterface.php -------------------------------------------------------------------------------- /src/Proxy/LazyServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Proxy/LazyServiceFactory.php -------------------------------------------------------------------------------- /src/ServiceLocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/ServiceLocatorInterface.php -------------------------------------------------------------------------------- /src/ServiceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/ServiceManager.php -------------------------------------------------------------------------------- /src/Test/CommonPluginManagerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Test/CommonPluginManagerTrait.php -------------------------------------------------------------------------------- /src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeCompiledFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeCompiledFactory.php -------------------------------------------------------------------------------- /src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompiler.php -------------------------------------------------------------------------------- /src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompilerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompilerFactory.php -------------------------------------------------------------------------------- /src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/AheadOfTimeFactoryCompiler/AheadOfTimeFactoryCompilerInterface.php -------------------------------------------------------------------------------- /src/Tool/ConfigDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConfigDumper.php -------------------------------------------------------------------------------- /src/Tool/ConfigDumperFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConfigDumperFactory.php -------------------------------------------------------------------------------- /src/Tool/ConfigDumperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConfigDumperInterface.php -------------------------------------------------------------------------------- /src/Tool/ConstructorParameterResolver/ConstructorParameterResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConstructorParameterResolver/ConstructorParameterResolver.php -------------------------------------------------------------------------------- /src/Tool/ConstructorParameterResolver/ConstructorParameterResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConstructorParameterResolver/ConstructorParameterResolverInterface.php -------------------------------------------------------------------------------- /src/Tool/ConstructorParameterResolver/FallbackConstructorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConstructorParameterResolver/FallbackConstructorParameter.php -------------------------------------------------------------------------------- /src/Tool/ConstructorParameterResolver/ServiceFromContainerConstructorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/ConstructorParameterResolver/ServiceFromContainerConstructorParameter.php -------------------------------------------------------------------------------- /src/Tool/FactoryCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/FactoryCreator.php -------------------------------------------------------------------------------- /src/Tool/FactoryCreatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/FactoryCreatorFactory.php -------------------------------------------------------------------------------- /src/Tool/FactoryCreatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminas/laminas-servicemanager/HEAD/src/Tool/FactoryCreatorInterface.php --------------------------------------------------------------------------------