Using --ignore-platform-req and --ignore-platform-reqs flags to bypass specific or all platform requirements during Composer install or update.
It's useful when your development environment is missing certain PHP extensions or versions.
// ignore specific one
composer install --ignore-platform-req=ext-php
// ignore all
composer update --ignore-platform-reqs
Ignores a specific platform requirement, useful when a single extension is missing.--ignore-platform-req=ext-php:
Ignores all platform requirements, useful when multiple extensions or PHP versions are not met.--ignore-platform-reqs:
You Might Also Like
Cache Blade Views for Faster Rendering
Cache rendered Blade views to store compiled templates and reduce server processing time. Laravel's...
Named Routes: Parameter Substitution and URL Generation
Parameter substitution in named routes and generate URLs dynamically, including handling optional pa...