$this->getDependencyConfig(), ]; } /** * Returns the dependency (service manager) configuration */ public function getDependencyConfig(): array { return [ // Legacy Zend Framework aliases 'aliases' => [ LegacyInjectorInterfae::class => InjectorInterface::class, LegacyConfigInterface::class => ConfigInterface::class, LegacyInjectorGenerator::class => CodeGenerator\InjectorGenerator::class, ], 'factories' => [ InjectorInterface::class => Container\InjectorFactory::class, ConfigInterface::class => Container\ConfigFactory::class, CodeGenerator\InjectorGenerator::class => Container\GeneratorFactory::class, ], 'abstract_factories' => [ Container\ServiceManager\AutowireFactory::class, ], ]; } }