src/Module.php
<?php /** * This file is part of the mimmi20/navigation-helper-containerparser package. * * Copyright (c) 2021-2025, Thomas Mueller <mimmi20@live.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types = 1); namespace Mimmi20\NavigationHelper\ContainerParser; use Laminas\ModuleManager\Feature\ConfigProviderInterface;use Laminas\ModuleManager\Feature\DependencyIndicatorInterface;use Override; final class Module implements ConfigProviderInterface, DependencyIndicatorInterface{ /** * Return default configuration for laminas-mvc applications. * * @return array<string, array<string, array<int|string, string>>> * @phpstan-return array{service_manager: array{aliases: array<string, class-string>, factories: array<class-string, class-string>}} * * @throws void */ #[Override] public function getConfig(): array { $provider = new ConfigProvider(); return [ 'service_manager' => $provider->getDependencyConfig(), ]; } /** * Expected to return an array of modules on which the current one depends on * * @return array<int, string> * * @throws void */ #[Override] public function getModuleDependencies(): array { return ['Laminas\Navigation']; }}