Laurent Laville
Laurent Laville
@fabpico This package is a bit outdated and only support PHP 7 See https://github.com/mamuz/PhpDependencyAnalysis/blob/v2.0.2/composer.json#L30 or even master branch ! Your platform is PHP 8.1.1 ``` - mamuz/php-dependency-analysis[v2.0.0, ..., v2.0.2] require...
If you really want to install v2.0.2 (latest) at your own risk, you could bypass platform verification with composer. ``` composer require --dev --ignore-platform-req=php mamuz/php-dependency-analysis ```
Hello @theofidry I've just tried to test your [fork](https://github.com/theofidry/box/tree/feat/req-info) (`feat/req-info` branch), but I got some issues with it. After : 1. cloning it with command ` git clone -b feat/req-info...
@theofidry Thanks for the fix, it run better now ! info:requirements on PHPLint 9.1 ```shell [email protected] in /shared/backups/github/box-fidry $ bin/box info:req -d /shared/backups/github/phplint/ ``` ```text // Loading the configuration file...
We can check it online with result https://github.com/overtrue/phplint/actions/runs/7057695166/job/19211827974
Personnaly I'd like the Composer Unused solution that display it even if the symfony/polyfill-mbstring is present ``` [email protected] in /shared/backups/github/phplint $ /shared/backups/php/composer-unused.phar --version composer-unused 0.8.11 [email protected] in /shared/backups/github/phplint $ /shared/backups/php/composer-unused.phar...
@theofidry I've another use case that I don't understand origin. I've recently played with [PHP Benchmarking framework](https://github.com/phpbench/phpbench) v1.12.15 And I've noticed that [php extensions declared](https://github.com/phpbench/phpbench/blob/1.2.15/composer.json#L21-L27) does not match with the...
@theofidry On my project https://github.com/llaville/umlwriter/tree/3.4.0 By invoking `composer why ext-zlib` command, I get only ``` jawira/plantuml-encoding v1.1.0 requires ext-zlib (*) ``` But when I compile project with BOX `4.6.0@95b0d8e`, and...
Another use case that lead for me to a confusion, is when an extension is defined as root in the `composer.json` but did not shown on the RequirementChecker section of...
> WDYM as a composer plugin context? My first attempt was to update declaration of [`box-manifest`](https://github.com/llaville/box-manifest) as a `composer-plugin` rather than a `project`. As **box-manifest** as a direct dependency to...