composer-deps-analyzer icon indicating copy to clipboard operation
composer-deps-analyzer copied to clipboard

Library for Analyzing Dependencies of composer projects

Results 8 composer-deps-analyzer issues
Sort by recently updated
recently updated
newest added

Hi @schmittjoh, Composer installs * require dependencies of all package * require-dev dependencies of only root package But the composer deps analyser analyses * require dependencies of all package (ok)...

The current `DependencyEdge::isDevDependency()` is a bit ambiguous with regards to mixed dev- and non-dev-dependencies: Source packages that list the dependency in both "require-dev" and "require" will only create a single...

Currently, the test suite uses composer to temporarily install some packages, analyzes the resulting package set and then removes the packages again. This makes the test suite slow to run,...

- [x] Implementation - [ ] Tests Resolves #8

The current behavior is a bit ambiguous with regards to mixed dev- and non-dev-dependencies: Source packages that list a dependency in both "require-dev" and "require" will only create a single...

Currently, we analyze every single package and add all of them to a single graph, no matter if it's a dev and non-dev dependency. Instead, I'd like to propose we...

I want the `analyze` function [here](https://github.com/schmittjoh/composer-deps-analyzer/blob/6e72a866c40a98e63efb6bb059a2bbaadcb8aa15/src/JMS/Composer/DependencyAnalyzer.php#L32-L39) to support an optional field which enables looking into `$dir` recursively and add the packages by calling `createPackage` for each directory with a `composer.json`...

I want to exclude "some" packages (but not all dev dependencies) from the generated graph, can I have something like this? ```