Issues (62)

docker/symfony/bundles.php (2 issues)

Labels
Severity
1
<?php
2
3
return [
4
    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
6
    Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
7
    Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
8
    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
9
    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
0 ignored issues
show
The type Symfony\Bundle\WebProfilerBundle\WebProfilerBundle was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
10
    Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
11
    Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
12
    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
13
    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
14
    Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
0 ignored issues
show
The type Symfony\Bundle\MakerBundle\MakerBundle was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
    LAG\AdminBundle\LAGAdminBundle::class => ['all' => true],
16
    BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
17
    Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
18
    Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
19
];
20