Adding to our example project

To get started with testing, let's make an issue on our GitLab project and then create a branch, starting with the issue number.

In our example project, we'll need to update our composer.json file to look like the following:

{    "name": "judges119/monorot13",    "description": "A MonoLog formatter that puts logs through the ROT13 transformation before logging them.",    "type": "library",    "license": "BSD",    "authors": [        {            "name": "Adam O'Grady",            "email": "adam.ogrady@gmail.com"        }    ],    "require": {        "monolog/monolog": "^1.23"    },    "require-dev": {        "phpunit/phpunit": "~4.5"    },    "autoload": {        "psr-4": {            "Judges119\\Monolog\\": "src"        }    }}

After you've done that, run the following command:

composer install

This will install the ...

Get GitLab Quick Start Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.