Skip to content

Commit 71d55bf

Browse files
authored
Add PHP 8.3 support, drop PHP < 8.2 (#12)
1 parent d030a3c commit 71d55bf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+4-4
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:
@@ -78,7 +78,7 @@ jobs:
7878
strategy:
7979
matrix:
8080
php-version:
81-
- "8.1"
81+
- "8.2"
8282

8383
steps:
8484
- uses: "actions/checkout@v4"

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0"
14+
"php": "~8.2.0 || ~8.3.0"
1515
},
1616
"require-dev": {
1717
"phpunit/phpunit": "^10.4.2",
18-
"slam/php-cs-fixer-extensions": "^3.9"
18+
"slam/php-cs-fixer-extensions": "^3.10"
1919
},
2020
"autoload": {
2121
"files": [

0 commit comments

Comments
 (0)