Passed
Push — master ( 6fa476...708289 )
by Zing
10:18
created

changelog-linker.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6
use Symplify\ChangelogLinker\ValueObject\Option;
0 ignored issues
show
The type Symplify\ChangelogLinker\ValueObject\Option 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...
7
8
return static function (ContainerConfigurator $containerConfigurator): void {
9
    $parameters = $containerConfigurator->parameters();
10
11
    $parameters->set(
12
        Option::AUTHORS_TO_IGNORE,
13
        [
14
            'zingimmick',
15
            'dependabot[bot]',
16
            'fossabot',
17
            'renovate[bot]',
18
        ]
19
    );
20
21
    $parameters->set(Option::REPOSITORY_URL, 'https://github.com/zingimmick/laravel-query-builder');
22
};
23