Skip to content

Commit c6d1060

Browse files
committed
fix phpcs ignore argument
1 parent 6bc3c37 commit c6d1060

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ clean:
141141
.PHONY: codefix
142142
codefix:
143143
./vendor/bin/phpcbf --config-set ignore_non_auto_fixable_on_exit 1
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/phpmd src text codesize,unusedcode,naming,design --exclude */vendor/*
219219
./vendor/bin/phpmd test text unusedcode,naming,design --exclude */vendor/*
220220
php -r 'exit((int)version_compare(PHP_MAJOR_VERSION, "7", ">"));' || ./vendor/phpstan.phar analyse

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.10
1+
2.4.11

resources/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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-bcmath, php-date, php-gd, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.15), ${misc:Depends}
13+
Depends: php (>= 8.1.0), php-bcmath, php-date, php-gd, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.16), ${misc:Depends}
1414
Description: PHP Barcode library
1515
This library includes PHP classes to generate linear
1616
and bidimensional barcodes:

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-color) < 3.0.0
21-
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.15
21+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.16
2222
Requires: php-bcmath
2323
Requires: php-date
2424
Requires: php-gd

0 commit comments

Comments
 (0)