Development-related information
- Docker
- Your favourite IDE :)
-
Build, create and start Docker's containers by running command:
docker-compose up -d
-
Install packages by running command:
docker-compose run --rm composer install
Available as composer
service. You can run any Composer's command using the composer
service:
docker-compose run --rm composer [command]
Examples below.
docker-compose run --rm composer install
docker-compose run --rm composer update
docker-compose run --rm composer require [vendor]/[package]
docker-compose run --rm composer remove [vendor]/[package]
Fix coding standard by running command:
docker-compose exec php php-cs-fixer fix
Omit cache and run the Fixer from scratch by running command:
docker-compose exec php rm .php_cs.cache && docker-compose exec php php-cs-fixer fix
Install required packages by running command: docker-compose run --rm composer install
.
Tests are running using Docker and php
service defined in docker-compose.yml
. Example:
docker-compose exec php phpunit --no-coverage
You can also run them in container. In this case you have to run 2 commands:
-
Enter container:
docker-compose exec php bash
-
Run tests:
phpunit --no-coverage
docker-compose exec php phpunit
Served by Infection — Mutation Testing Framework.
docker-compose exec php vendor/bin/infection --threads=5
Example of output:
125 mutations were generated:
105 mutants were killed
3 mutants were not covered by tests
5 covered mutants were not detected
0 errors were encountered
12 time outs were encountered
Metrics:
Mutation Score Indicator (MSI): 93%
Mutation Code Coverage: 97%
Covered Code MSI: 95%
build/reports/infection/infection-log.txt
build/reports/infection/summary-log.txt
Rebuild project and run tests by running command:
docker-compose exec php phing