File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 6767 fi
6868
6969 - name : Detect unused packages
70- run : composer-unused -vvv --profile --ansi --no-interaction --no-progress --excludePackage=php --excludePackage=tatter/alerts --excludePackage=tatter/preferences --excludePackage=tatter/thumbnails
70+ run : composer-unused -vvv --output-format=github --ansi --no-interaction --no-progress
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ use ComposerUnused \ComposerUnused \Configuration \Configuration ;
6+ use ComposerUnused \ComposerUnused \Configuration \NamedFilter ;
7+
8+ return static function (Configuration $ config ): Configuration {
9+ return $ config
10+ ->addNamedFilter (NamedFilter::fromString ('enyo/dropzone ' ))
11+ ->setAdditionalFilesFor ('tatter/preferences ' , [
12+ __DIR__ . '/vendor/tatter/preferences/src/Helpers/preferences_helper.php ' ,
13+ ]);
14+ };
You can’t perform that action at this time.
0 commit comments