Skip to content

Commit fc178ba

Browse files
Bump
1 parent 903fd63 commit fc178ba

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

ChangeLog-5.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changes in PHP_CodeCoverage 5.0
2+
3+
All notable changes of the PHP_CodeCoverage 5.0 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4+
5+
## [5.0.0] - 2017-02-03
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 5
10+
11+
12+
[5.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0...5.0.0
13+

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
2121
"irc": "irc://irc.freenode.net/phpunit"
2222
},
23+
"minimum-stability": "dev",
2324
"require": {
24-
"php": "^5.6 || ^7.0",
25-
"phpunit/php-file-iterator": "~1.3",
25+
"php": "^7.0",
26+
"phpunit/php-file-iterator": "^1.3",
2627
"phpunit/php-token-stream": "^1.4.2",
27-
"phpunit/php-text-template": "~1.2",
28-
"sebastian/code-unit-reverse-lookup": "~1.0",
29-
"sebastian/environment": "^1.3.2 || ^2.0",
30-
"sebastian/version": "~1.0|~2.0"
28+
"phpunit/php-text-template": "^1.2",
29+
"sebastian/code-unit-reverse-lookup": "^1.0",
30+
"sebastian/environment": "^2.0",
31+
"sebastian/version": "^2.0"
3132
},
3233
"require-dev": {
33-
"phpunit/phpunit": "^5.4",
34-
"ext-xdebug": ">=2.1.4"
34+
"phpunit/phpunit": "^6.0",
35+
"ext-xdebug": "^2.5"
3536
},
3637
"suggest": {
3738
"ext-dom": "*",
38-
"ext-xdebug": ">=2.4.0",
3939
"ext-xmlwriter": "*"
4040
},
4141
"autoload": {
@@ -45,7 +45,7 @@
4545
},
4646
"extra": {
4747
"branch-alias": {
48-
"dev-master": "4.0.x-dev"
48+
"dev-master": "5.0.x-dev"
4949
}
5050
}
5151
}

src/Report/Html/Renderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ abstract class Renderer
6262
*/
6363
public function __construct($templatePath, $generator, $date, $lowUpperBound, $highLowerBound)
6464
{
65-
$version = new Version('4.0.3', dirname(dirname(dirname(dirname(__DIR__)))));
65+
$version = new Version('5.0', dirname(dirname(dirname(dirname(__DIR__)))));
6666

6767
$this->templatePath = $templatePath;
6868
$this->generator = $generator;

0 commit comments

Comments
 (0)