skip to Main Content

I’m new to Laravel and I’m trying to install Laravel version 5.2. But it throws this error while installation. But if I install the latest version It works fine. I also tried updating to the latest version of PHP but still the same error. I’m using this to create a project composer create-project laravel/laravel onetone 5.2

Warning: require(C:xampphtdocsonetonebootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:xampphtdocsonetonebootstrapautoload.php on line 17

Fatal error: require(): Failed opening required 'C:xampphtdocsonetonebootstrap/../vendor/autoload.php' (include_path='C:xamppphpPEAR') in C:xampphtdocsonetonebootstrapautoload.php on line 17
PHP Warning:  require(C:xampphtdocsonetonebootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:xampphtdocsonetonebootstrapautoload.php on line 17
PHP Fatal error:  require(): Failed opening required 'C:xampphtdocsonetonebootstrap/../vendor/autoload.php' (include_path='C:xamppphpPEAR') in C:xampphtdocsonetonebootstrapautoload.php on line 17
Script php artisan clear-compiled handling the pre-update-cmd event returned with error code 255

2

Answers


  1. Please use the following command:

    You need to use the --prefer-dist flag and wrap version number in a quotation.

    composer create-project --prefer-dist laravel/laravel onetone "5.2.*"

    Login or Signup to reply.
  2. php version for laravel 5.2 is between 5.5.9 – 7.1.*. so make sure that u have right php version in your computer

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search