Skip to content

Commit 0772b97

Browse files
committed
PHP 8.5 support
1 parent 79feaab commit 0772b97

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: 'ubuntu-latest'
99
strategy:
1010
matrix:
11-
php-versions: ['8.3', '8.4']
11+
php-versions: ['8.3', '8.4', '8.5']
1212
container: "ghcr.io/php-cs-fixer/php-cs-fixer:3-php${{ matrix.php-versions }}"
1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.3', '8.4']
12+
php-versions: ['8.3', '8.4', '8.5']
1313

1414
steps:
1515
- uses: actions/checkout@v3

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.3', '8.4']
12+
php-versions: ['8.3', '8.4', '8.5']
1313

1414
steps:
1515
- name: Setup PHP

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.3', '8.4']
12+
php-versions: ['8.3', '8.4', '8.5']
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: php-actions/composer@v6 # or alternative dependency management

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ composer require sharkmachine/psr18-shark
1515

1616
## Supported PHP versions
1717

18-
| Library version | PHP 8.2 | PHP 8.3 | PHP 8.4 |
19-
|--------------------------|---------|---------|----------|
20-
| 2.0 (next, not released) | x |||
21-
| 1.x (current version) ||||
18+
| Library version | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
19+
|--------------------------|---------|---------|---------|---------|
20+
| 2.0 (next, not released) | x ||| |
21+
| 1.x (current version) |||| |
2222

2323
## Request mutation
2424

docker-compose.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
services:
22
phpstan:
3-
image: ghcr.io/phpstan/phpstan:1-php8.3
3+
image: ghcr.io/phpstan/phpstan:2-php8.3
44
volumes:
5-
- .:/app
5+
- .:/app
6+
php-cs-fixer:
7+
image: ghcr.io/php-cs-fixer/php-cs-fixer:3-php8.4
8+
volumes:
9+
- .:/code

0 commit comments

Comments
 (0)