Skip to content

Commit 0aa043e

Browse files
authored
Add PHP 8.3 support, drop PHP < 8.2 (#49)
1 parent 37767e7 commit 0aa043e

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.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.1"
20+
- "8.2"
2121

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

4949
steps:
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
matrix:
7979
php-version:
80-
- "8.1"
80+
- "8.2"
8181

8282
steps:
8383
- uses: "actions/checkout@v4"
@@ -96,7 +96,7 @@ jobs:
9696
strategy:
9797
matrix:
9898
php-version:
99-
- "8.1"
99+
- "8.2"
100100

101101
steps:
102102
- uses: "actions/checkout@v4"

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,16 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0",
14+
"php": "~8.2.0 || ~8.3.0",
1515
"nikic/php-parser": "^4.17.1",
16-
"phpstan/phpstan": "^1.10.42"
16+
"phpstan/phpstan": "^1.10.44"
1717
},
1818
"require-dev": {
1919
"nette/di": "^3.1.8",
2020
"nette/neon": "^3.4.1",
2121
"phpstan/phpstan-phpunit": "^1.3.15",
2222
"phpunit/phpunit": "^10.4.2",
23-
"slam/php-cs-fixer-extensions": "^3.9.0",
24-
"slam/php-debug-r": "^1.8.1"
23+
"slam/php-cs-fixer-extensions": "^3.10.0"
2524
},
2625
"autoload": {
2726
"psr-4": {

0 commit comments

Comments
 (0)