Skip to content

Commit b8631ef

Browse files
committed
Test on PHP 8.5
1 parent 22b47f9 commit b8631ef

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

.editorconfig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ end_of_line = lf
99
charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true
12-
eclint_block_comment_start = /*
13-
eclint_block_comment = *
14-
eclint_block_comment_end = */
1512

1613
[*.md]
1714
trim_trailing_whitespace = false

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
strategy:
99
matrix:
10-
php: [ '8.1', '8.2', '8.3', '8.4' ]
10+
php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
1111

1212
services:
1313
mysql:
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535

3636
# Docs: https://github.com/shivammathur/setup-php
3737
- name: Setup PHP
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Perform static analysis
5252
run: composer analyze -- --error-format=github
53-
if: ${{ matrix.php == '8.4' }}
53+
if: ${{ matrix.php == '8.5' }}
5454

5555
- name: Run PHPUnit
5656
run: composer test-without-mssql
@@ -59,4 +59,4 @@ jobs:
5959

6060
- name: Check Formatting
6161
run: vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no
62-
if: ${{ matrix.php == '8.4' }}
62+
if: ${{ matrix.php == '8.5' }}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"ext-pdo": "*"
2121
},
2222
"require-dev": {
23-
"friendsofphp/php-cs-fixer": "^3.86",
24-
"phpstan/phpstan": "^2.1.22",
23+
"friendsofphp/php-cs-fixer": "^3.91",
24+
"phpstan/phpstan": "^2.1.32",
2525
"phpunit/phpunit": "^10.5",
2626
"ramsey/uuid": "^4.9"
2727
},

0 commit comments

Comments
 (0)