Skip to content

Commit d107768

Browse files
authored
Support PHP 8.3 (#470)
1 parent 3d29389 commit d107768

File tree

10 files changed

+492
-469
lines changed

10 files changed

+492
-469
lines changed

.github/workflows/test-suite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
php-version:
2222
- "8.1"
2323
- "8.2"
24+
- "8.3"
2425
operating-system:
2526
- "ubuntu-latest"
2627

composer.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": "~8.1 || ~8.2",
18+
"php": "~8.1 || ~8.2 || ~8.3",
1919
"ext-filter": "*",
2020
"ext-json": "*",
2121
"ext-simplexml": "*",
@@ -25,12 +25,11 @@
2525
},
2626
"require-dev": {
2727
"ext-pcov": "*",
28-
"phpunit/phpunit": "^8.5.14|^9.0|^10.0",
28+
"phpunit/phpunit": "^10.4",
2929
"openlss/lib-array2xml": "^1.0",
30-
"symfony/expression-language": "^2.3|^3.0|^4.0|^5.0|^6.0"
31-
},
32-
"conflict": {
33-
"phpunit/phpunit": "<8.0, >=11.0"
30+
"symfony/expression-language": "^2.3|^3.0|^4.0|^5.0|^6.0",
31+
"symfony/cache": "^2.3|^3.0|^4.0|^5.0|^6.0",
32+
"symfony/var-exporter": "^2.3|^3.0|^4.0|^5.0|^6.0"
3433
},
3534
"suggest": {
3635
"openlss/lib-array2xml": "In order ot use Coduo\\PHPMatcher\\Matcher\\XmlMatcher",
@@ -64,7 +63,7 @@
6463
"tools\/vendor\/bin\/php-cs-fixer fix --using-cache=no"
6564
],
6665
"test" : [
67-
"vendor\/bin\/phpunit"
66+
"vendor\/bin\/phpunit --coverage-html var/phpunit/coverage/html --coverage-filter src"
6867
],
6968
"test:mutation": [
7069
"Composer\\Config::disableProcessTimeout",

0 commit comments

Comments
 (0)