• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mimmi20 / navigation-helper-htmlify / 14163188660

31 Mar 2025 03:04AM UTC coverage: 100.0%. First build
14163188660

Pull #251

github

web-flow
composer(deps-dev): update symfony/console requirement

Updates the requirements on [symfony/console](https://github.com/symfony/console) to permit the latest version.
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/7.2/CHANGELOG.md)
- [Commits](https://github.com/symfony/console/compare/v7.2.1...v7.2.5)

---
updated-dependencies:
- dependency-name: symfony/console
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #251: composer(deps-dev): update symfony/console requirement from ^7.2.1 to ^7.2.5

72 of 72 relevant lines covered (100.0%)

7.96 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/ConfigProvider.php
1
<?php
2

3
/**
4
 * This file is part of the mimmi20/navigation-helper-htmlify package.
5
 *
6
 * Copyright (c) 2021-2025, Thomas Mueller <mimmi20@live.de>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types = 1);
13

14
namespace Mimmi20\NavigationHelper\Htmlify;
15

16
final class ConfigProvider
17
{
18
    /**
19
     * Return general-purpose laminas-navigation configuration.
20
     *
21
     * @return array<string, array<string, array<string, string>>>
22
     * @phpstan-return array{dependencies: array{aliases: array<string, class-string>, factories: array<class-string, class-string>}}
23
     *
24
     * @throws void
25
     */
26
    public function __invoke(): array
1✔
27
    {
28
        return [
1✔
29
            'dependencies' => $this->getDependencyConfig(),
1✔
30
        ];
1✔
31
    }
32

33
    /**
34
     * Return application-level dependency configuration.
35
     *
36
     * @return array<string, array<string, string>>
37
     * @phpstan-return array{aliases: array<string, class-string>, factories: array<class-string, class-string>}
38
     *
39
     * @throws void
40
     */
41
    public function getDependencyConfig(): array
3✔
42
    {
43
        return [
3✔
44
            'factories' => [
3✔
45
                Htmlify::class => HtmlifyFactory::class,
3✔
46
            ],
3✔
47
            'aliases' => [
3✔
48
                HtmlifyInterface::class => Htmlify::class,
3✔
49
            ],
3✔
50
        ];
3✔
51
    }
52
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc