Skip to content

Commit b99d628

Browse files
authored
Merge pull request #112 from phpcr/update-phpunit
support phpunit 10
2 parents 50b6b37 + c33ef50 commit b99d628

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/test-application.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- php-version: '8.0'
3030
- php-version: '8.1'
3131
- php-version: '8.2'
32+
- php-version: '8.3'
3233

3334
steps:
3435
- name: Checkout project

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
2.1.9
5+
-----
6+
7+
* **2023-12-01**: Fix test class name to match the filename as phpunit 10 no longer accepts the mismatch.
8+
49
2.1.8
510
-----
611

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"php": "^5.6 || ^7.0 || ^8.0"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^5.7 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
29+
"phpunit/phpunit": "^5.7 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
3030
},
3131
"autoload": {
3232
"psr-0": {

tests/PHPCR/Tests/PropertyTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @covers \PHPCR\PropertyType
1111
*/
12-
class PropertyTypesTest extends TestCase
12+
class PropertyTypeTest extends TestCase
1313
{
1414
/** key = numeric type constant names as defined by api
1515
* value = expected value of the TYPENAME_<TYPE> constants.

0 commit comments

Comments
 (0)