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