-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from kiloutyg/489-issue-around-hovering-class…
…es-clicking-on-button-which-is-damn-annoying 489 issue around hovering classes clicking on button which is damn annoying
- Loading branch information
Showing
33 changed files
with
812 additions
and
5,737 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?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 { | ||
$config | ||
|
||
|
||
// Ignore specific packages that are used indirectly or via configuration | ||
->addNamedFilter(NamedFilter::fromString('symfony/dotenv')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/apache-pack')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/runtime')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/webpack-encore-bundle')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/monolog-bundle')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/yaml')) | ||
->addNamedFilter(NamedFilter::fromString('symfony/flex')) | ||
|
||
|
||
// Ignore all Symfony UX packages | ||
->addPatternFilter(PatternFilter::fromString('/^symfony\/ux-/')) | ||
|
||
// Include additional configuration files that may use dependencies | ||
->setAdditionalFilesFor('symfony/framework-bundle', [ | ||
...Glob::glob(__DIR__ . '/config/{packages,packages/dev}/*.yaml'), | ||
]) | ||
->setAdditionalFilesFor('twig/twig', [ | ||
...Glob::glob(__DIR__ . '/templates/**/*.twig'), | ||
]); | ||
|
||
// Handle dependencies based on PHP version | ||
if (PHP_VERSION_ID >= 80100) { | ||
$config->addNamedFilter(NamedFilter::fromString('symfony/property-access')); | ||
} | ||
|
||
return $config; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.