This is the PHP version of the Racing Car Katas.
The project uses:
Recommended:
See GitHub cloning a repository for details on how to create a local copy of this project on your computer.
git clone git@github.com:emilybache/Racing-Car-Katas.git
or
git clone https://github.com/emilybache/Racing-Car-Katas.git
Install all the dependencies using composer
cd ./Racing-Car-Katas/php
composer install
Run all the tests
composer tests
The project uses composer to install:
src
- Contains the five exercise:- TirePressureMonitoringSystem
- TextConverter
- TicketDispenser
- TelemetrySystem
- Leaderboard
tests
- Contains the corresponding tests
PHPUnit is used to run tests, to help this can be run using a composer script. To run the unit tests, from the root of the project run:
composer tests
On Windows a batch file has been created, similar to an alias on Linux/Mac (e.g. alias pu="composer tests"
), the same
composer tests
can be run:
pu.bat
To run all test and generate a html coverage report run:
composer test-coverage
The coverage report is created in /builds, it is best viewed by opening /builds/index.html in your browser.
The XDEbug extension is required for coverage report generating.
Easy Coding Standard (ECS) is used to check for style and code standards, PSR-12 is used.
To check code, but not fix errors:
composer check-cs
On Windows a batch file has been created, similar to an alias on Linux/Mac (e.g. alias cc="composer check-cs"
), the
same composer check-cs
can be run:
cc.bat
Many code fixes are automatically provided by ECS, if advised to run --fix, the following script can be run:
composer fix-cs
On Windows a batch file has been created, similar to an alias on Linux/Mac (e.g. alias fc="composer fix-cs"
), the same
composer fix-cs
can be run:
fc.bat
PHPStan is used to run static analysis checks:
composer phpstan
On Windows a batch file has been created, similar to an alias on Linux/Mac (e.g. alias ps="composer phpstan"
), the
same composer phpstan
can be run:
ps.bat
Happy coding!