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
In the Vendor layer packages I have the sebastian/comparator package specified, which is ignored by ComposerCollector. My guess is that this package uses autoload/classmap in composer.json instead of psr-4.
The text was updated successfully, but these errors were encountered:
Hello,
you are correct, it uses classmap to load the files. It not working is expected documented behavior. Straight from the composer collector documentation:
The composer collector allows you to define dependencies on composer require or require-dev packages that follow PSR-0 or PSR-4 autoloading convention.
I would suggest using DirectoryCollector over the package's src dir instead.
In the Vendor layer packages I have the sebastian/comparator package specified, which is ignored by ComposerCollector. My guess is that this package uses autoload/classmap in composer.json instead of psr-4.
The text was updated successfully, but these errors were encountered: