Skip to content

Commit 8f1a28b

Browse files
committed
fix phpcs ignore argument
1 parent 993db0b commit 8f1a28b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ clean:
141141
# Fix code style violations
142142
.PHONY: codefix
143143
codefix:
144-
./vendor/bin/phpcbf --ignore="./vendor/" --standard=psr12 src test
144+
./vendor/bin/phpcbf --ignore="\./vendor/" --standard=psr12 src test
145145

146146
# Build a DEB package for Debian-like Linux distributions
147147
.PHONY: deb
@@ -214,7 +214,7 @@ endif
214214
# Test source code for coding standard violations
215215
.PHONY: lint
216216
lint:
217-
./vendor/bin/phpcs --ignore="./vendor/" --standard=phpcs.xml src test
217+
./vendor/bin/phpcs --ignore="\./vendor/" --standard=phpcs.xml src test
218218
./vendor/bin/phpcbf --config-set ignore_non_auto_fixable_on_exit 1
219219
./vendor/bin/phpmd src text codesize,unusedcode,naming,design --exclude */vendor/*
220220
./vendor/bin/phpmd test text unusedcode,naming,design --exclude */vendor/*

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.27
1+
2.0.28

resources/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Vcs-Git: https://github.com/~#VENDOR#~/~#PROJECT#~.git
1010
Package: ~#PKGNAME#~
1111
Provides: php-~#PROJECT#~
1212
Architecture: all
13-
Depends: php (>= 8.1.0), php-mbstring, php-tecnickcom-tc-lib-unicode-data (<< 3.0.0), php-tecnickcom-tc-lib-unicode-data (>= 2.0.26), ${misc:Depends}
13+
Depends: php (>= 8.1.0), php-mbstring, php-tecnickcom-tc-lib-unicode-data (<< 3.0.0), php-tecnickcom-tc-lib-unicode-data (>= 2.0.27), ${misc:Depends}
1414
Description: PHP Unicode methods.
1515
PHP library containing Unicode methods.

resources/rpm/rpm.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ BuildArch: noarch
1818

1919
Requires: php(language) >= 8.1.0
2020
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) < 3.0.0
21-
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 2.0.26
21+
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 2.0.27
2222
Requires: php-pcre
2323
Requires: php-mbstring
2424

0 commit comments

Comments
 (0)