Skip to content

Commit 6bc3c37

Browse files
committed
update dependencies
1 parent b97669a commit 6bc3c37

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
os: [ubuntu-latest]
2929
coverage-extension: [xdebug]
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- name: Use php ${{ matrix.php-version }}
3333
uses: shivammathur/setup-php@v2
3434
with:

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ COMPOSER=$(PHP) -d "apc.enable_cli=0" $(shell which composer)
8383
# phpDocumentor executable file
8484
PHPDOC=$(shell which phpDocumentor)
8585

86+
# phpstan version
87+
PHPSTANVER=2.1.32
88+
8689
# --- MAKE TARGETS ---
8790

8891
# Display general help about this command
@@ -137,6 +140,7 @@ clean:
137140
# Fix code style violations
138141
.PHONY: codefix
139142
codefix:
143+
./vendor/bin/phpcbf --config-set ignore_non_auto_fixable_on_exit 1
140144
./vendor/bin/phpcbf --ignore="./vendor/" --standard=psr12 src test
141145

142146
# Build a DEB package for Debian-like Linux distributions
@@ -169,7 +173,7 @@ endif
169173
deps: ensuretarget
170174
rm -rf ./vendor/*
171175
($(COMPOSER) install -vvv --no-interaction)
172-
curl --silent --show-error --fail --location --output ./vendor/phpstan.phar https://github.com/phpstan/phpstan/releases/download/2.1.2/phpstan.phar \
176+
curl --silent --show-error --fail --location --output ./vendor/phpstan.phar https://github.com/phpstan/phpstan/releases/download/${PHPSTANVER}/phpstan.phar \
173177
&& chmod +x ./vendor/phpstan.phar
174178

175179
# Generate source code documentation

VERSION

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

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": "12.2.0 || 11.5.7 || 10.5.40",
67-
"squizlabs/php_codesniffer": "3.13.0"
66+
"phpunit/phpunit": "12.4.4 || 11.5.44 || 10.5.58",
67+
"squizlabs/php_codesniffer": "4.0.1"
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.13), ${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.15), ${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.13
21+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.15
2222
Requires: php-bcmath
2323
Requires: php-date
2424
Requires: php-gd

0 commit comments

Comments
 (0)