--- layout: bootstrap title: Codeception Installation ---
Install a Composer to your project's root
Run
composer require codeception/codeception --dev
From now on Codeception (with installed PHPUnit) can be run as:
php vendor/bin/codecept
Initialize your testing environment with
php vendor/bin/codecept bootstrap
Alternative installation method for bugfixing, contributions and hacking
Clone from GitHub:
git clone git@github.com:Codeception/Codeception.git && cd Codeception
Install dependencies with Composer
composer install
Execute bootstrap, specifying path to your directory.
php codecept bootstrap /path/to/demo/project
To run tests use -c option for specifing path.
php codecept run -c /path/to/demo/project
Don't forget to send Pull Requests!