Skip to content

Commit 6b00ebc

Browse files
authored
Merge pull request #27 from nick322/26
PHP 8.3 & 8.4 support
2 parents 24a047f + 2090dca commit 6b00ebc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ on:
1414

1515
jobs:
1616
linux_tests:
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818

1919
strategy:
2020
fail-fast: true
2121
matrix:
22-
php: ['7.3', '7.4', '8.0', '8.1', '8.2']
22+
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
2323
stability: [prefer-lowest, prefer-stable]
2424

2525
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"type": "library",
55
"license": "MIT",
66
"require": {
7-
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
7+
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
88
"ext-openssl": "*",
99
"ext-hash": "*",
1010
"ext-simplexml": "*",
1111
"mnapoli/silly": "^1.0",
1212
"pear/ole": "v1.0.0"
1313
},
1414
"require-dev": {
15-
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
15+
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
1616
"ext-openssl": "*",
1717
"ext-hash": "*",
1818
"phpunit/phpunit": "^9.5 || ^10.0"

0 commit comments

Comments
 (0)