Skip to content

Commit 614d4dd

Browse files
authored
Merge pull request #68 from dotkernel/PHP-8.5
Update to PHP 8.5
2 parents 77ca58f + 0df672f commit 614d4dd

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

.github/workflows/codecov.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
php:
1818
- "8.2"
1919
- "8.3"
20+
- "8.4"
21+
- "8.5"
2022

2123
steps:
2224
- name: Checkout

.github/workflows/qodana_code_quality.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
checks: write
1717
strategy:
1818
matrix:
19-
php-versions: [ '8.2', '8.3', '8.4' ]
19+
php-versions: [ '8.2', '8.3', '8.4', '8.5' ]
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:
23-
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
23+
# to check out the actual pull request commit, not the merge commit
24+
ref: ${{ github.event.pull_request.head.sha }}
2425
fetch-depth: 0 # a full history is required for pull request analysis
2526
- name: Install PHP
2627
uses: shivammathur/setup-php@v2

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout
@@ -46,4 +47,4 @@ jobs:
4647
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
4748

4849
- name: Run static analysis with PHPStan
49-
run: vendor/bin/phpstan analyse
50+
run: vendor/bin/phpstan analyse

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
}
2727
},
2828
"require": {
29-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
30-
"dotkernel/dot-errorhandler": "^4.2.1",
29+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
30+
"dotkernel/dot-errorhandler": "^4.4.0",
3131
"laminas/laminas-component-installer": "^3.5.0",
3232
"laminas/laminas-config-aggregator": "^1.17.0",
33-
"mezzio/mezzio": "^3.22.0",
33+
"mezzio/mezzio": "^3.24.0",
3434
"mezzio/mezzio-fastroute": "^3.13.0",
3535
"mezzio/mezzio-twigrenderer": "^2.17.0"
3636
},

public/css/app.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/app.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)