Skip to content

Commit 56a1efe

Browse files
authored
Merge pull request #24 from AngryBytes/feat/php85
Add support for PHP 8.5
2 parents 3e41c00 + 2e1882b commit 56a1efe

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/php-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
php-versions: ['8.2', '8.3', '8.4']
9+
php-versions: ['8.2', '8.3', '8.4', '8.5']
1010
name: PHP ${{ matrix.php-versions }} tests
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 6.0.1
4+
5+
- Added support for PHP `8.5`.
6+
37
## 6.0.0
48

59
### PHP support

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
]
3636
},
3737
"require": {
38-
"php": "8.2 - 8.4"
38+
"php": "8.2 - 8.5"
3939
},
4040
"require-dev": {
41-
"phpstan/phpstan": "2.0.3",
42-
"phpunit/phpunit": "11.5.1",
43-
"squizlabs/php_codesniffer": "3.11.2",
41+
"phpstan/phpstan": "2.1.32",
42+
"phpunit/phpunit": "11.5.44",
43+
"squizlabs/php_codesniffer": "4.0.1",
4444
"friendsofphp/php-cs-fixer": "^3.65"
4545
}
4646
}

0 commit comments

Comments
 (0)