1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Bump shipmonk/composer-dependency-analyser from 1.7.0 to 1.8.2

Bumps [shipmonk/composer-dependency-analyser](https://github.com/shipmonk-rnd/composer-dependency-analyser) from 1.7.0 to 1.8.2.
- [Release notes](https://github.com/shipmonk-rnd/composer-dependency-analyser/releases)
- [Commits](https://github.com/shipmonk-rnd/composer-dependency-analyser/compare/1.7.0...1.8.2)

---
updated-dependencies:
- dependency-name: shipmonk/composer-dependency-analyser
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-12-31 03:12:55 +00:00 committed by Yassine Guedidi
parent c93451683f
commit 1c0529242c
2 changed files with 27 additions and 18 deletions

View file

@ -5,8 +5,9 @@ use ShipMonk\ComposerDependencyAnalyser\Config\ErrorType;
$config = new Configuration();
return $config
$config
->disableComposerAutoloadPathScan()
->disableExtensionsAnalysis()
->enableAnalysisOfUnusedDevDependencies()
->addPathToScan(__DIR__ . '/app', false)
->addPathToScan(__DIR__ . '/migrations', false)
@ -50,8 +51,6 @@ return $config
'symfony/google-mailer',
'symfony/intl',
'symfony/phpunit-bridge',
'symfony/polyfill-php80',
'symfony/polyfill-php81',
'symfony/proxy-manager-bridge',
'symfony/templating',
'symfony/var-dumper',
@ -72,3 +71,13 @@ return $config
'symfony/web-server-bundle',
], [ErrorType::DEV_DEPENDENCY_IN_PROD])
;
if (\PHP_VERSION_ID >= 80000) {
$config->ignoreErrorsOnPackage('symfony/polyfill-php80', [ErrorType::UNUSED_DEPENDENCY]);
}
if (\PHP_VERSION_ID >= 80100) {
$config->ignoreErrorsOnPackage('symfony/polyfill-php81', [ErrorType::UNUSED_DEPENDENCY]);
}
return $config;