
Useful commands:

List all coding standard issues:

```
$ ./vendor/bin/phpcs
```

Fix all coding standard issues:

```
$ ./vendor/bin/phpcbf
```

Check compatibility with a PHP version.

```
$ ./vendor/bin/phpcs -p private --standard=PHPCompatibility --runtime-set testVersion 7.3
```
