getting warning when composer update or composer install
I get the errors when I'm using the command composer install or composer update, it's still working fine but I want to know why I get this warning? I just want to avoid this help, you can see the warning as below
Package jakub-onderka/php-console-color is abandoned, you should avoid using it. Use php-parallel-lint/php-console-color instead.
Package jakub-onderka/php-console-highlighter is abandoned, you should avoid using it. Use php-parallel-lint/php-console-highlighter instead.
Package phpunit/phpunit-mock-objects is abandoned, you should avoid using it. No replacement was suggested.
Package zendframework/zend-diactoros is abandoned, you should avoid using it. Use laminas/laminas-diactoros instead.
As the warning says, the package is abandoned. Probably one of your dependencies is still relying on this package. You can see which package that is by running composer why jakub-onderka/php-console-highlighter.
In most cases, upgrading everything to the latest version should fix this. This is not something you can fix on your side, because it's a sub dependency.