Answers for "laravel 7 php version"

PHP
16

install laravel

composer create-project --prefer-dist laravel/laravel blog "6.*"
Posted by: Guest on May-08-2020
1

laravel instal

composer global require laravel/installer

laravel new example-app

php artisan serve
Posted by: Guest on December-11-2020
2

laravel 8 php version requirements

PHP >= 7.3
BCMath PHP Extension
Ctype PHP Extension
Fileinfo PHP Extension
JSON PHP Extension
Mbstring PHP Extension
OpenSSL PHP Extension
PDO PHP Extension
Tokenizer PHP Extension
XML PHP Extension
Posted by: Guest on April-16-2021
0

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
Posted by: Guest on August-24-2020

Code answers related to "laravel 7 php version"

Browse Popular Code Answers by Language