Skip to content

Commit 087e45b

Browse files
Merge pull request #27 from deanblackborough/coveralls
Coveralls
2 parents 1e29e7d + b7f54ee commit 087e45b

File tree

7 files changed

+888
-146
lines changed

7 files changed

+888
-146
lines changed

.coveralls.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
coverage_clover: clover.xml
2+
json_path: coveralls-upload.json

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ notifications:
1212
on_success: never # default: change
1313
on_failure: always # default: always
1414

15-
script: phpunit tests
15+
script:
16+
- vendor/bin/phpunit --coverage-clover clover.xml
17+
18+
after_success:
19+
- php vendor/bin/php-coveralls -v

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
Full changelog for Zend Framework 3 view helpers library.
44

5-
## v1.02.1 - Dependency - 2010-01-20
5+
## v1.03.2 - Code coverage - 2018-05-16
6+
7+
* Added code coverage reporting.
8+
* Updated dependencies and tested.
9+
10+
## v1.02.1 - Dependency - 2018-01-20
611

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/deanblackborough/zf3-view-helpers/blob/master/LICENSE)
33
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-8892BF.svg)](https://php.net/)
44
[![Build Status](https://travis-ci.org/deanblackborough/zf3-view-helpers.svg?branch=master)](https://travis-ci.org/deanblackborough/zf3-view-helpers)
5+
[![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)
56
[![Total Downloads](https://img.shields.io/packagist/dt/deanblackborough/zf3-view-helpers.svg?style=flat-square)](https://packagist.org/packages/deanblackborough/zf3-view-helpers)
67

78
# ZF3 view helpers

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7",
18+
"php": "^7.2",
1919
"zendframework/zend-view": "^2.10"
2020
},
2121
"suggest": {
2222
"php": "^7.2",
2323
"deanblackborough/zf3-view-helpers-code-completion": "^1"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^6"
26+
"phpunit/phpunit": "^7",
27+
"php-coveralls/php-coveralls": "^2"
2728
},
2829
"repositories": [
2930
{

0 commit comments

Comments
 (0)