Leoh
Leoh

Reputation: 670

laravel showing error gives failed to open stream: no such file or directory autoload.php

Im new with laravel and give me error showing: failed to open stream: no such file or directory autoload.php

im using:

Upvotes: 0

Views: 765

Answers (1)

Wader
Wader

Reputation: 9883

Looks like you're missing vendor/autoload.php and this is probably because when you tried to install laravel, composer threw an error about you trying to use PHP 5.3. Laravel 5 requires at least 5.4.

On a side note PHP 5.3 is end of life and unsupported.

Upvotes: 2

Related Questions