File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * Fast Forward Framework dependency analyzer overrides.
7+ *
8+ * This package is an aggregate meta package, so it intentionally carries
9+ * direct composer dependencies for consumer convenience and can trigger noisy
10+ * unused-dependency signals during CI. This override keeps dependency analysis
11+ * non-blocking for those compatibility findings.
12+ */
13+
14+ use FastForward \DevTools \Config \ComposerDependencyAnalyserConfig ;
15+ use ShipMonk \ComposerDependencyAnalyser \Config \Configuration ;
16+ use ShipMonk \ComposerDependencyAnalyser \Config \ErrorType ;
17+
18+ return ComposerDependencyAnalyserConfig::configure (
19+ static function (Configuration $ configuration ): void {
20+ $ configuration ->ignoreErrors ([
21+ ErrorType::SHADOW_DEPENDENCY ,
22+ ErrorType::UNUSED_DEPENDENCY ,
23+ ]);
24+ }
25+ );
You can’t perform that action at this time.
0 commit comments