Skip to content

Commit

Permalink
Merge pull request #27 from deanblackborough/coveralls
Browse files Browse the repository at this point in the history
Coveralls
  • Loading branch information
deanblackborough authored May 15, 2018
2 parents 1e29e7d + b7f54ee commit 087e45b
Show file tree
Hide file tree
Showing 7 changed files with 888 additions and 146 deletions.
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coverage_clover: clover.xml
json_path: coveralls-upload.json
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ notifications:
on_success: never # default: change
on_failure: always # default: always

script: phpunit tests
script:
- vendor/bin/phpunit --coverage-clover clover.xml

after_success:
- php vendor/bin/php-coveralls -v
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

Full changelog for Zend Framework 3 view helpers library.

## v1.02.1 - Dependency - 2010-01-20
## v1.03.2 - Code coverage - 2018-05-16

* Added code coverage reporting.
* Updated dependencies and tested.

## v1.02.1 - Dependency - 2018-01-20

* Removed deanblackborough/zf3-view-helpers-code-completion from require, added to suggest

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/deanblackborough/zf3-view-helpers/blob/master/LICENSE)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-8892BF.svg)](https://php.net/)
[![Build Status](https://travis-ci.org/deanblackborough/zf3-view-helpers.svg?branch=master)](https://travis-ci.org/deanblackborough/zf3-view-helpers)
[![Coverage Status](https://coveralls.io/repos/github/deanblackborough/zf3-view-helpers/badge.svg?branch=master)](https://coveralls.io/github/deanblackborough/zf3-view-helpers?branch=master)
[![Total Downloads](https://img.shields.io/packagist/dt/deanblackborough/zf3-view-helpers.svg?style=flat-square)](https://packagist.org/packages/deanblackborough/zf3-view-helpers)

# ZF3 view helpers
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@
}
],
"require": {
"php": "^7",
"php": "^7.2",
"zendframework/zend-view": "^2.10"
},
"suggest": {
"php": "^7.2",
"deanblackborough/zf3-view-helpers-code-completion": "^1"
},
"require-dev": {
"phpunit/phpunit": "^6"
"phpunit/phpunit": "^7",
"php-coveralls/php-coveralls": "^2"
},
"repositories": [
{
Expand Down
Loading

0 comments on commit 087e45b

Please sign in to comment.