Error "Installation failed, reverting ./composer.json to its original content."

Viewed 12161

I wanna connect my Laravel project to parse-server. And I follow the step in https://github.com/LaravelParse/Laravel-Parse

when I run this command:

composer require laravel-parse/parse

Then I got an error:

Installation failed, reverting ./composer.json to its original content.

I also tried to add in composer.json file:

"require": {
    "laravel-parse/parse": "^3.0"
} 

My Laravel version is: 5.7.18

1 Answers

Package's composer.json(Read Lineno 18,19) says this laravel must be up to Laravel 5.4. You can not use this laravel 5.5, 5.6, 5.7, it's incompatible.

if you want use this(Laravel Parse) you need laravel 5.4

NOTE: I tested in Laravel version 5.5,5.6 and 5.7, it is now not supported

Related