--- layout: bootstrap title: Codeception Installation ---

Follow QuickStart Guide to Install and execute your first test in 6 easy steps.

QuickStart Guide →

Composer (recommended)

To install via Composer, run this in your project's root:

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

Phar

{% include phar.html %}

Git

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!