
Root composer.json requires php ^7.3 but your php version (8.0.0) does not satisfy that requirement
You have to use "php": "^7.3|^8.0", in composer.json file under require to remove the Root composer.json requires php ^7.3 but your php version (8.0.0) does not satisfy that requirement error while using Laravel project.
Answers 1
-
Choose php version ^7.3 or ^8.0 in composer json to remove Root composer.json requires php ^7.3 but your php version (8.0.0) does not satisfy that requirement
--PATH composer.json"require": { "php": "^7.3|^8.0",
0
Random Code Snippet Queries: Laravel
- How to implement toggleLike() method in Overtrue\LaravelLike laravel package
- How to set column as primary key in Laravel model
- Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.0"
- Extra Filter Query on Relationships in Laravel
- How to check find method executed successfully in laravel
- Get current month records in laravel 7/8
- How to update record after save method in Laravel
- Laravel migration add foreign key to existing table
- Laravel pagination links with query string
- Method Illuminate\Events\Dispatcher::fire does not exist
- How to increment column value of table in Laravel
- Laravel get count with where condition
- How to call controller function from view in Laravel
- Get domain name in laravel
- The POST method is not supported for this route. Supported methods: PUT.
- How to add columns in existing table using migration in laravel
- Get 30 days older records from table in laravel
- How to get IP address in laravel
- Use withCount() to Calculate Child Relationship Records
- Update record after find method in lavavel
- Extract only time from datetime in laravel
- FirstOrCreate() Not Inserting Model
- If no route matched route::fallback in laravel
- There are no commands defined in the "route:" namespace
- How to get query string value in laravel