mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-07 14:32:21 +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:
parent
c93451683f
commit
1c0529242c
2 changed files with 27 additions and 18 deletions
|
@ -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;
|
||||
|
|
30
composer.lock
generated
30
composer.lock
generated
|
@ -19589,16 +19589,16 @@
|
|||
},
|
||||
{
|
||||
"name": "shipmonk/composer-dependency-analyser",
|
||||
"version": "1.7.0",
|
||||
"version": "1.8.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/shipmonk-rnd/composer-dependency-analyser.git",
|
||||
"reference": "bca862b2830a453734aee048eb0cdab82e5c9da3"
|
||||
"reference": "f374f5366028fd7ece8aeaffa76895d73dc0a05a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/shipmonk-rnd/composer-dependency-analyser/zipball/bca862b2830a453734aee048eb0cdab82e5c9da3",
|
||||
"reference": "bca862b2830a453734aee048eb0cdab82e5c9da3",
|
||||
"url": "https://api.github.com/repos/shipmonk-rnd/composer-dependency-analyser/zipball/f374f5366028fd7ece8aeaffa76895d73dc0a05a",
|
||||
"reference": "f374f5366028fd7ece8aeaffa76895d73dc0a05a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -19607,17 +19607,17 @@
|
|||
"php": "^7.2 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"editorconfig-checker/editorconfig-checker": "^10.3.0",
|
||||
"ergebnis/composer-normalize": "^2.19",
|
||||
"editorconfig-checker/editorconfig-checker": "^10.6.0",
|
||||
"ergebnis/composer-normalize": "^2.19.0",
|
||||
"ext-dom": "*",
|
||||
"ext-libxml": "*",
|
||||
"phpcompatibility/php-compatibility": "^9.3",
|
||||
"phpstan/phpstan": "^1.10.63",
|
||||
"phpstan/phpstan-phpunit": "^1.1.1",
|
||||
"phpstan/phpstan-strict-rules": "^1.2.3",
|
||||
"phpunit/phpunit": "^8.5.28 || ^9.5.20",
|
||||
"shipmonk/name-collision-detector": "^2.0.0",
|
||||
"slevomat/coding-standard": "^8.0.1"
|
||||
"phpcompatibility/php-compatibility": "^9.3.5",
|
||||
"phpstan/phpstan": "^1.12.3",
|
||||
"phpstan/phpstan-phpunit": "^1.4.0",
|
||||
"phpstan/phpstan-strict-rules": "^1.6.0",
|
||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20",
|
||||
"shipmonk/name-collision-detector": "^2.1.1",
|
||||
"slevomat/coding-standard": "^8.15.0"
|
||||
},
|
||||
"bin": [
|
||||
"bin/composer-dependency-analyser"
|
||||
|
@ -19649,9 +19649,9 @@
|
|||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/shipmonk-rnd/composer-dependency-analyser/issues",
|
||||
"source": "https://github.com/shipmonk-rnd/composer-dependency-analyser/tree/1.7.0"
|
||||
"source": "https://github.com/shipmonk-rnd/composer-dependency-analyser/tree/1.8.2"
|
||||
},
|
||||
"time": "2024-08-08T08:12:32+00:00"
|
||||
"time": "2024-12-30T12:31:04+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/browser-kit",
|
||||
|
|
Loading…
Reference in a new issue