You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
489 B
PHP
16 lines
489 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use ComposerUnused\ComposerUnused\Configuration\Configuration;
|
|
use ComposerUnused\ComposerUnused\Configuration\NamedFilter;
|
|
use ComposerUnused\ComposerUnused\Configuration\PatternFilter;
|
|
use Webmozart\Glob\Glob;
|
|
|
|
return static function (Configuration $config): Configuration {
|
|
return $config
|
|
->setAdditionalFilesFor('codeigniter4/settings', [
|
|
__DIR__ . '/vendor/codeigniter4/settings/src/Helpers/setting_helper.php',
|
|
]);
|
|
};
|