Skip to content

Commit 0f6b3b0

Browse files
authored
Merge pull request #15 from smartondev/feature/php85
enh: CI with php 8.5
2 parents d2d4fad + a6ef142 commit 0f6b3b0

5 files changed

Lines changed: 457 additions & 325 deletions

File tree

.github/workflows/coverals-and-codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: '8.4'
23+
php-version: '8.5'
2424
coverage: xdebug
2525

2626
- name: Install dependencies

.github/workflows/pest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
php-version: [ 8.2, 8.3, 8.4 ]
18+
php-version: [ 8.2, 8.3, 8.4, 8.5 ]
1919

2020
steps:
2121
- name: Checkout code

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
php-version: [ 8.2, 8.3, 8.4 ]
18+
php-version: [ 8.2, 8.3, 8.4, 8.5 ]
1919

2020
steps:
2121
- name: Checkout code
@@ -34,4 +34,4 @@ jobs:
3434
run: echo "xdebug.mode=coverage" >> $GITHUB_ENV
3535

3636
- name: Run PHPStan (level 10 / src)
37-
run: vendor/bin/phpstan analyse -l 10 src
37+
run: vendor/bin/phpstan analyse -l max src

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
"config": {
5353
"allow-plugins": {
5454
"pestphp/pest-plugin": true
55+
},
56+
"platform": {
57+
"php": "8.2.0"
5558
}
5659
}
5760
}

0 commit comments

Comments
 (0)