Skip to content

Commit

Permalink
Added clover reporter as dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
chajr committed Nov 11, 2018
1 parent 103f3ca commit e6311c7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
vendor/
composer.lock
build
12 changes: 10 additions & 2 deletions composer.json
Expand Up @@ -3,7 +3,7 @@
"description": "Extends symfony console display style",
"type": "library",
"license": "MIT",
"version": "0.3.0.2",
"version": "0.3.0.3",
"authors": [
{
"name": "Michał Adamiak",
Expand All @@ -17,7 +17,8 @@
"require-dev": {
"satooshi/php-coveralls": "1.0.*",
"phpunit/phpunit": "4.8.35",
"symfony/var-dumper": "^4.1"
"symfony/var-dumper": "^4.1",
"bluetree-service/clover-reporter": "~0.1"
},
"autoload": {
"psr-4": {
Expand All @@ -28,5 +29,12 @@
"psr-4": {
"BlueConsoleTest\\": "tests/"
}
},
"scripts": {
"test": "phpunit --coverage-clover build/logs/clover.xml",
"test-cover": [
"@test",
"./vendor/bin/clover_reporter -s --ansi"
]
}
}
4 changes: 4 additions & 0 deletions doc/CHANGELOG.md
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## 0.3.0.3 - 2018-11-11
### Added
* Clover reporter as dev dependency

## 0.3.0.2 - 2018-11-06
### Removed
* Support for PHP 7.0
Expand Down

0 comments on commit e6311c7

Please sign in to comment.