September 2017
Intermediate to advanced
244 pages
6h 44m
English
There are different ways to install CodeCeption but I prefer composer and it is a standard way to install different PHP tools as PHP packages. So let's install that:
composer require "codeception/codeception" --dev
As you can see, we are using the --dev flag so that it will add CodeCeption in the require-dev block in the composer.json file. So, in production it will not be installed when you run composer install --no-dev, it will not install dependencies in the require-dev block. In case of confusion, check the composer-related chapter that is Chapter 5, Load and resolve with Composer, an Evolutionary.
After installing it, we need to set it up for writing test cases and to make it a part of our project. ...
Read now
Unlock full access