enajeeb / phalcon-boilerplate

Boilerplate template for PHP Phalcon Framework. Its includes Authentication, Database Abstraction...
MIT License
26 stars 7 forks source link

Missing vendor directory #5

Closed drewswaycool closed 8 years ago

drewswaycool commented 8 years ago

bootstrap.php

is attempting to require a file that is not present in the repo (there is no vendor directory)

Warning: require_once(C:\xampp\htdocs\phalcon/vendor/autoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\phalcon\app\config\bootstrap.php on line 199

Fatal error: require_once(): Failed opening required 'C:\xampp\htdocs\phalcon/vendor/autoload.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\phalcon\app\config\bootstrap.php on line 199

enajeeb commented 8 years ago

You have to run "php composer.phar install" in the project directory which will create vendor directory.

drewswaycool commented 8 years ago

Thanks I assumed I was missing a step like this.