Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
dependency-version: [ prefer-lowest, prefer-stable ]
steps:
-
Expand All @@ -112,7 +112,7 @@ jobs:
ini-file: development
-
name: Update dependencies
run: composer update --no-progress --${{ matrix.dependency-version }} --prefer-dist --no-interaction
run: composer update --no-progress --${{ matrix.dependency-version }} --prefer-dist --no-interaction ${{ matrix.php-version == '8.5' && '--ignore-platform-req=php+' || '' }}
-
name: Run tests
run: vendor/bin/phpunit --no-coverage tests
3 changes: 2 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: ${{ matrix.repo }}
token: ${{ secrets.PAT_GITHUB_CHECKOUT }}

-
name: Setup PHP
Expand All @@ -50,7 +51,7 @@ jobs:
name: Update Dead Code Detector
run: |
composer config repositories.pr vcs https://github.com/${{ github.event.pull_request.head.repo.full_name }}
composer require --dev shipmonk/dead-code-detector:dev-${{ github.head_ref }}
composer require --dev shipmonk/dead-code-detector:dev-${{ github.head_ref }} --with-all-dependencies --minimal-changes

-
name: Run analysis
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
],
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^2.1.12"
"phpstan/phpstan": "^2.1.23"
},
"require-dev": {
"composer-runtime-api": "^2.0",
"composer/semver": "^3.4",
"doctrine/orm": "^2.19 || ^3.0",
"editorconfig-checker/editorconfig-checker": "^10.6.0",
"ergebnis/composer-normalize": "^2.45.0",
"ergebnis/composer-normalize": "^2.48.1",
"nette/application": "^3.1",
"nette/component-model": "^3.0",
"nette/utils": "^3.0 || ^4.0",
Expand Down
Loading