what laravel version should i work with php 7.3.27 code example

Example: i installed laravel 7.2.4 version but it shows php v 7.2

I've had this problem too. If you don't want to update all your composer
packages, you can solve this issue by manually changing the composer.lock file 
and writing your actual PHP version in platform > php in the JSON object.

Example

...
"platform": {
    "php": "7.1"
}
...
Although it works, the most recommended way to do this would be deleting your 
composer.lock file, changing the platform > php version in composer.json and 
then executing composer install

Tags:

Php Example