Skip to content

Commit

Permalink
Closes #2762
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 19, 2018
1 parent da009ee commit 66c0a54
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -8,7 +8,6 @@ addons:
- libxml2-utils

php:
- 7.1
- 7.2
- 7.3
- master
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog-8.0.md
Expand Up @@ -4,5 +4,9 @@ All notable changes of the PHPUnit 8.0 release series are documented in this fil

## [8.0.0] - 2019-02-01

### Removed

* Implemented [#2762](https://github.com/sebastianbergmann/phpunit/issues/2762): Drop support for PHP 7.1

[8.0.0]: https://github.com/sebastianbergmann/phpunit/compare/7.5...8.0.0

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@
PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of the xUnit architecture for unit testing frameworks.

[![Latest Stable Version](https://img.shields.io/packagist/v/phpunit/phpunit.svg?style=flat-square)](https://packagist.org/packages/phpunit/phpunit)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.1-8892BF.svg?style=flat-square)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.2-8892BF.svg?style=flat-square)](https://php.net/)
[![Build Status](https://img.shields.io/travis/sebastianbergmann/phpunit/master.svg?style=flat-square)](https://phpunit.de/build-status.html)

## Installation
Expand Down
4 changes: 2 additions & 2 deletions build/binary-phar-autoload.php.in
@@ -1,11 +1,11 @@
#!/usr/bin/env php
<?php
if (version_compare('7.1.0', PHP_VERSION, '>')) {
if (version_compare('7.2.0', PHP_VERSION, '>')) {
fwrite(
STDERR,
sprintf(
'PHPUnit X.Y.Z by Sebastian Bergmann and contributors.' . PHP_EOL . PHP_EOL .
'This version of PHPUnit is supported on PHP 7.1 and PHP 7.2.' . PHP_EOL .
'This version of PHPUnit is supported on PHP 7.2 and PHP 7.3.' . PHP_EOL .
'You are using PHP %s (%s).' . PHP_EOL,
PHP_VERSION,
PHP_BINARY
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -21,7 +21,7 @@
},
"prefer-stable": true,
"require": {
"php": "^7.1",
"php": "^7.2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
Expand Down Expand Up @@ -53,7 +53,7 @@
},
"config": {
"platform": {
"php": "7.1.0"
"php": "7.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
Expand Down
4 changes: 2 additions & 2 deletions phpunit
Expand Up @@ -9,11 +9,11 @@
* file that was distributed with this source code.
*/

if (version_compare('7.1.0', PHP_VERSION, '>')) {
if (version_compare('7.2.0', PHP_VERSION, '>')) {
fwrite(
STDERR,
sprintf(
'This version of PHPUnit is supported on PHP 7.1 and PHP 7.2.' . PHP_EOL .
'This version of PHPUnit is supported on PHP 7.2 and PHP 7.3.' . PHP_EOL .
'You are using PHP %s (%s).' . PHP_EOL,
PHP_VERSION,
PHP_BINARY
Expand Down
Binary file not shown.

0 comments on commit 66c0a54

Please sign in to comment.