Reputation: 1
I did a fresh Laravel 6.0.3
install on laragon and I am trying to install backpack
.
I did
composer require backpack/crud correclty
but then when I tried to do the next step
php artisan backpack:base:install
I get an error
Symfony\Component\Process\Exception\ProcessFailedException : The command "composer require backpack/generators --dev" failed. Exit Code: 2(Misuse of shell builtins)
I tried to delete the cache, to add timeout 600
and I do not know what else to do.
Upvotes: 0
Views: 1532
Reputation: 6193
There was indeed a problem with installing backpack/generators - composer did not fall back to an appropriate version, but it is now fixed. You should be able to run php artisan backpack:base:install
without problems.
If you hit any roadblocks during the installation, I recommend you follow the manual installation procedure, instead of php artisan backpack:base:install
.
Upvotes: 3
Reputation: 17206
Backpack v3.4 is a collection of packages for Laravel 5.5 / 5.6.
Right under requirement in Backpack.io it says it requires laravel 5.5 or 5.6 and PHP7.
It's not compatible with laravel 6.*
Upvotes: 0