Skip to content

Commit 019d0ce

Browse files
authored
Add PHP 8.5 support, drop PHP < 8.4 (#75)
1 parent 5dde719 commit 019d0ce

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-version:
20-
- "8.3"
20+
- "8.4"
2121

2222
steps:
2323
- uses: "actions/checkout@v5"
@@ -39,11 +39,11 @@ jobs:
3939
strategy:
4040
matrix:
4141
php-version:
42-
- "8.4"
42+
- "8.5"
4343
code-coverage:
4444
- "none"
4545
include:
46-
- php-version: "8.3"
46+
- php-version: "8.4"
4747
code-coverage: "pcov"
4848

4949
steps:
@@ -79,7 +79,7 @@ jobs:
7979
strategy:
8080
matrix:
8181
php-version:
82-
- "8.3"
82+
- "8.4"
8383

8484
steps:
8585
- uses: "actions/checkout@v5"
@@ -98,7 +98,7 @@ jobs:
9898
strategy:
9999
matrix:
100100
php-version:
101-
- "8.3"
101+
- "8.4"
102102

103103
steps:
104104
- uses: "actions/checkout@v5"

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.3.0 || ~8.4.0",
14+
"php": "~8.4.0 || ~8.5.0",
1515
"phpstan/phpstan": "^2.1.31"
1616
},
1717
"require-dev": {
1818
"nette/di": "^3.2.4",
1919
"nette/neon": "^3.4.4",
20-
"nikic/php-parser": "^4.19.2 || ^5.6.0",
20+
"nikic/php-parser": "^4.19.2 || ^5.6.2",
2121
"phpstan/phpstan-phpunit": "^2.0.7",
2222
"phpunit/phpunit": "^12.4.1",
23-
"slam/php-cs-fixer-extensions": "^3.13.0"
23+
"slam/php-cs-fixer-extensions": "^3.14.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)