Change mode of Xdebug to "coverage" in Docker's configuration to make it possible to generate code coverage by PHPUnit

This commit is contained in:
Meritoo
2021-03-28 22:15:51 +02:00
parent 47d07150d3
commit 64f474fcf1
3 changed files with 8 additions and 1 deletions

View File

@@ -2,6 +2,11 @@
Common and useful classes, methods, exceptions etc. Common and useful classes, methods, exceptions etc.
# 1.1.2
1. Change mode of `Xdebug` to `coverage` in Docker's configuration to make it possible to generate code coverage by
`PHPUnit`
# 1.1.1 # 1.1.1
1. [BaseCollection] Treat the `null` index as "no index" only while adding new element, iow. do not treat empty 1. [BaseCollection] Treat the `null` index as "no index" only while adding new element, iow. do not treat empty

View File

@@ -1 +1 @@
1.1.1 1.1.2

View File

@@ -29,3 +29,5 @@ services:
command: --version command: --version
volumes: volumes:
- .:/var/www/application:cached - .:/var/www/application:cached
environment:
XDEBUG_MODE: coverage