Skip to content

Commit

Permalink
Release version 7.1.0 with PHPUnit 11 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
sat-hub committed Apr 12, 2024
1 parent 29c6ab3 commit a5959ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"role": "lead"
}
],
"version": "7.0.1",
"version": "7.1.0",
"time": "2024-04-12",

"require": {
"php": "~8.1",
"php": "~8.2",
"ext-dom": "*",
"ext-mbstring": "*",
"phpunit/php-timer": "~6.0",
"sebastian/cli-parser": "~2.0",
"sebastian/version": "~4.0",
"symfony/finder": "~6.3"
"phpunit/php-timer": "~7.0",
"sebastian/cli-parser": "~3.0",
"sebastian/version": "~5.0",
"symfony/finder": "~6.4|~7.0"
},

"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions phpcpd
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* file that was distributed with this source code.
*/

if (version_compare('8.1.0', PHP_VERSION, '>')) {
if (version_compare('8.2.0', PHP_VERSION, '>')) {
fwrite(
STDERR,
sprintf(
'This version of PHPCPD requires PHP 8.1 (or later).' . PHP_EOL .
'This version of PHPCPD requires PHP 8.2 or later.' . PHP_EOL .
'You are using PHP %s%s.' . PHP_EOL,
PHP_VERSION,
defined('PHP_BINARY') ? ' (' . PHP_BINARY . ')' : ''
Expand Down
2 changes: 1 addition & 1 deletion src/CLI/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

final class Application
{
private const VERSION = '7.0.1';
private const VERSION = '7.1.0';

/**
* @param list<string> $argv
Expand Down

0 comments on commit a5959ae

Please sign in to comment.