Skip to content

Commit 9b4216d

Browse files
committed
fix phpcs ignore argument
1 parent c20d199 commit 9b4216d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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/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.3.4
1+
2.3.5

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-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.15), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.18), ${misc:Depends}
13+
Depends: php (>= 8.1.0), php-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.16), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.19), ${misc:Depends}
1414
Description: PHP PDF Graph Library
1515
PHP library containing PDF graphic and geometric methods.

resources/rpm/rpm.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ BuildArch: noarch
1919
Requires: php(language) >= 8.1.0
2020
Requires: php-zlib
2121
Requires: php-composer(%{c_vendor}/tc-lib-color) < 3.0.0
22-
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.15
22+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.16
2323
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) < 3.0.0
24-
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.18
24+
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.19
2525

2626
Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version}
2727
Provides: php-%{gh_project} = %{version}

0 commit comments

Comments
 (0)