You will need Composer to install this API library.
use Composer to get things going
composer install
After creating the project, copy the .env.example file to make a .env file and fill in the appropriate configuration fields
cp .env.example .env
Create the database schema by running the following doctrine command
vendor/bin/doctrine orm:schema-tool:create
After the schema has been created in the database, you can seed it with some fake data using the provided seeder
php fixtures/seed_data.php
After getting your project set up, you can run the Codeception tests as follows
vendor/bin/codecept run