Skip to content

Commit b9c0199

Browse files
authored
Add PHP 8.3 support, drop PHP < 8.2 (#29)
1 parent 79cbd5c commit b9c0199

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
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"
@@ -40,11 +40,11 @@ jobs:
4040
strategy:
4141
matrix:
4242
php-version:
43-
- "8.2"
43+
- "8.3"
4444
code-coverage:
4545
- "none"
4646
include:
47-
- php-version: "8.1"
47+
- php-version: "8.2"
4848
code-coverage: "pcov"
4949

5050
steps:
@@ -70,7 +70,7 @@ jobs:
7070
strategy:
7171
matrix:
7272
php-version:
73-
- "8.1"
73+
- "8.2"
7474

7575
steps:
7676
- uses: "actions/checkout@v4"
@@ -89,7 +89,7 @@ jobs:
8989
strategy:
9090
matrix:
9191
php-version:
92-
- "8.1"
92+
- "8.2"
9393

9494
steps:
9595
- uses: "actions/checkout@v4"

composer.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,15 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0",
13+
"php": "~8.2.0 || ~8.3.0",
1414
"ext-mbstring": "*",
1515
"ext-tokenizer": "*",
1616
"friendsofphp/php-cs-fixer": "^3.38.2"
1717
},
1818
"require-dev": {
1919
"phpstan/phpstan": "^1.10.43",
2020
"phpstan/phpstan-phpunit": "^1.3.15",
21-
"phpunit/phpunit": "^10.4.2",
22-
"slam/php-debug-r": "^1.8.1",
23-
"slam/phpstan-extensions": "^6.0.0"
21+
"phpunit/phpunit": "^10.4.2"
2422
},
2523
"autoload": {
2624
"psr-4": {

phpstan.neon

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
includes:
22
- vendor/phpstan/phpstan-phpunit/extension.neon
3-
- vendor/slam/phpstan-extensions/conf/slam-rules.neon
43
- phpstan-baseline.neon
54

65
parameters:

0 commit comments

Comments
 (0)