Skip to content

Commit af41490

Browse files
authored
add php 8.4 support (#11)
1 parent 78d60ab commit af41490

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php-versions: ['8.2', '8.3']
13+
php-versions: ['8.2', '8.3', '8.4']
1414

1515
steps:
1616
- name: Checkout

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Create custom content types for [Edlib](https://edlib.com/).
66

77
## Requirements
88

9-
* PHP 8.2 or 8.3
9+
* PHP 8.2, 8.3 or 8.4
1010

1111
## Installation
1212

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626
},
2727
"require": {
28-
"php": "8.2.*|8.3.*",
28+
"php": "8.2.*|8.3.*|8.4.*",
2929
"psr/clock": "^1.0",
3030
"psr/clock-implementation": "^1.0",
3131
"psr/simple-cache": "^1.0|^2.0|^3.0",

phpunit.xml.dist

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
bootstrap="vendor/autoload.php"
44
colors="true"
55
cacheDirectory=".phpunit.cache"
6-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd">
6+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
7+
displayDetailsOnTestsThatTriggerDeprecations="true">
78
<coverage />
89

910
<testsuites>

tests/Lti/Edlib/EdlibContentItemsSerializerTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
final class EdlibContentItemsSerializerTest extends TestCase
1212
{
13+
private EdlibContentItemsSerializer $serializer;
14+
1315
protected function setUp(): void
1416
{
1517
$this->serializer = new EdlibContentItemsSerializer();

0 commit comments

Comments
 (0)