Skip to content

Commit 69eac89

Browse files
author
DKravtsov
committed
phpcpd 8.2.2 release. Improved progress bar.
1 parent f96c40b commit 69eac89

File tree

20 files changed

+252
-180
lines changed

20 files changed

+252
-180
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ COMPOSE_PROJECT_NAME=phpcpd
66
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
77
XDEBUG_CONFIG=main
88
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
9-
XDEBUG_VERSION=3.4.2
9+
XDEBUG_VERSION=3.4.3
1010
###< XDebug docker configuration ###

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes in PHPCPD are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [8.2.2] - 2025-05-18
6+
7+
### Updated
8+
9+
* Improved progress bar.
10+
511
## [8.2.1] - 2025-05-03
612

713
### Updated

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ARG INSIDE_DOCKER_CONTAINER=1
1212
ENV INSIDE_DOCKER_CONTAINER=$INSIDE_DOCKER_CONTAINER
1313
ARG XDEBUG_CONFIG=main
1414
ENV XDEBUG_CONFIG=$XDEBUG_CONFIG
15-
ARG XDEBUG_VERSION=3.4.2
15+
ARG XDEBUG_VERSION=3.4.3
1616
ENV XDEBUG_VERSION=$XDEBUG_VERSION
1717
ENV PHP_CS_FIXER_IGNORE_ENV=1
1818

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project name="phpcpd" default="setup">
33
<property name="basedir" value="." override="false"/>
4-
<property name="version" value="8.2.1" override="false"/>
4+
<property name="version" value="8.2.2" override="false"/>
55
<target name="setup" depends="clean,install-dependencies"/>
66

77
<target name="clean" description="Cleanup build artifacts">

composer.lock

Lines changed: 21 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/images/report_example_01.png

-4.54 KB
Loading

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Note: This tool is distributed as a [PHP Archive (PHAR)](https://php.net/phar).
2929
## Usage example
3030
```
3131
$ php ./vendor/bin/phpcpd --fuzzy --verbose src tests
32-
Copy/Paste Detector 8.2.1
33-
14/14 [==============================>] 100%
32+
Copy/Paste Detector 8.2.2
33+
14/14 [==============================>] 100% Loading & Processing
3434
Found 1 code clones with 17 duplicated lines in 1 files:
3535
3636
- /var/www/html/tests/Application/ApiKey/Transport/Controller/Api/v1/ApiKeyControllerTest.php:128-145 (17 lines)

releases/phpcpd-8.2.2.phar

136 KB
Binary file not shown.

releases/phpcpd-latest.phar

1.93 KB
Binary file not shown.

src/Cli/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
final class Application
3030
{
31-
public const string VERSION = '8.2.1';
31+
public const string VERSION = '8.2.2';
3232

3333
/**
3434
* @param array<int, string> $argv

0 commit comments

Comments
 (0)