Skip to content

Commit 8d65345

Browse files
committed
Update dependencies
1 parent cd5d802 commit 8d65345

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ endif
169169
deps: ensuretarget
170170
rm -rf ./vendor/*
171171
($(COMPOSER) install -vvv --no-interaction)
172-
curl --silent --show-error --fail --location --output ./vendor/phpstan.phar https://github.com/phpstan/phpstan/releases/download/2.0.4/phpstan.phar \
172+
curl --silent --show-error --fail --location --output ./vendor/phpstan.phar https://github.com/phpstan/phpstan/releases/download/2.1.2/phpstan.phar \
173173
&& chmod +x ./vendor/phpstan.phar
174174

175175
# Generate source code documentation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.2
1+
2.4.3

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
"require-dev": {
6464
"pdepend/pdepend": "2.16.2",
6565
"phpmd/phpmd": "2.15.0",
66-
"phpunit/phpunit": "11.5.2 || 10.5.40",
67-
"squizlabs/php_codesniffer": "3.11.2"
66+
"phpunit/phpunit": "12.0.1 || 11.5.7 || 10.5.40",
67+
"squizlabs/php_codesniffer": "3.11.3"
6868
},
6969
"autoload": {
7070
"psr-4": {

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.7), ${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.8), ${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.7
21+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.8
2222
Requires: php-bcmath
2323
Requires: php-date
2424
Requires: php-gd

src/Type/Square/QrCode/Spec.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function getEccSpec(int $version, int $level, array $spec): array
142142
$bv2 = Data::ECC_TABLE[$version][$level][1];
143143
$data = $this->getDataLength($version, $level);
144144
$ecc = $this->getECCLength($version, $level);
145-
if ($bv2 == 0) {
145+
if ($bv2 === 0) {
146146
$spec[0] = $bv1;
147147
$spec[1] = (int) ($data / $bv1); /* @phpstan-ignore-line */
148148
$spec[2] = (int) ($ecc / $bv1); /* @phpstan-ignore-line */

0 commit comments

Comments
 (0)