You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 28, 2022. It is now read-only.
but I still get an error if I'm using Ds\\* classes: App must only depend on dependencies in /app/tests/../composer.json (/app/tests/../composer.lock) but XXX depends on Ds\Map.
As workaround I had to add Ds\\ as explicitly allowed dependency:
$composerParser = newComposerFileParser(__DIR__ . '/../composer.json');
$validator = newMustOnlyDependOnComposerDependencies('App\\', $composerParser);
// ext-ds is not listed as dev dependency$validator = newExplicitlyAllowDependency($validator, 'App\\', 'Ds\\');
$this->phpArch->validate($validator);