Skip to content

Commit 051b0b9

Browse files
committed
update dependencies
1 parent cc0ac55 commit 051b0b9

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
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: [pcov]
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: 4 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
@@ -170,7 +173,7 @@ endif
170173
deps: ensuretarget
171174
rm -rf ./vendor/*
172175
($(COMPOSER) install -vvv --no-interaction)
173-
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 \
174177
&& chmod +x ./vendor/phpstan.phar
175178

176179
# Generate source code documentation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.24
1+
2.0.26

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"require-dev": {
2525
"pdepend/pdepend": "2.16.2",
2626
"phpmd/phpmd": "2.15.0",
27-
"phpunit/phpunit": "12.2.0 || 11.5.7 || 10.5.40",
28-
"squizlabs/php_codesniffer": "3.13.0"
27+
"phpunit/phpunit": "12.4.4 || 11.5.44 || 10.5.58",
28+
"squizlabs/php_codesniffer": "4.0.1"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)