Skip to content

Commit 2fe1c3e

Browse files
authored
Readme: mention alternative composer approach
1 parent 48e2d81 commit 2fe1c3e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,11 @@ Typically, you have PSR-4 autoloading which often solves this problem for you, b
5757
And in such cases, the test may work when executed in standalone run, but fail when running all the tests together (depending on which class was autoloaded first).
5858
Therefore, having a collision detector in CI might be useful.
5959

60-
## Composer's Ambiguous class resolution
61-
The check that Composer performs (which results in `Warning: Ambiguous class resolution`) [has some weird hidden ignores](https://github.com/composer/composer/issues/12140#issuecomment-2389035210) that makes it generally not usable.
60+
## Composer's ambiguous class resolution
61+
Composer can also detect class duplicates and exit with non-zero, but it runs much slower and lacks function and constant detection. Using composer version `>= 2.8.1`, you can use:
62+
```sh
63+
composer dump --optimize --strict-ambiguous
64+
```
6265

6366
## Supported PHP versions
6467
- PHP 7.2 - PHP 8.3

0 commit comments

Comments
 (0)