Skip to content

Commit f3837fa

Browse files
Prepare release
1 parent be6564e commit f3837fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of
44

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

99
## Installation
1010

1111
We distribute a [PHP Archive (PHAR)](https://php.net/phar) that has all required (as well as some optional) dependencies of PHPUnit 7.4 bundled in a single file:
1212

1313
```bash
14-
$ wget https://phar.phpunit.de/phpunit-nightly.phar
14+
$ wget https://phar.phpunit.de/phpunit-7.4.phar
1515

16-
$ php phpunit-nightly.phar --version
16+
$ php phpunit-7.4.phar --version
1717
```
1818

1919
Alternatively, you may use [Composer](https://getcomposer.org/) to download and install PHPUnit as well as its dependencies. Please refer to the "[Getting Started](https://phpunit.de/getting-started-with-phpunit.html)" guide for details on how to install PHPUnit.

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static function id(): string
3030
}
3131

3232
if (self::$version === null) {
33-
$version = new VersionId('7.4', \dirname(__DIR__, 2));
33+
$version = new VersionId('7.4.0', \dirname(__DIR__, 2));
3434
self::$version = $version->getVersion();
3535
}
3636

0 commit comments

Comments
 (0)