Skip to content

Commit

Permalink
Support PHP 8.3 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervila authored Dec 13, 2023
1 parent 3d29389 commit d107768
Show file tree
Hide file tree
Showing 10 changed files with 492 additions and 469 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "~8.1 || ~8.2",
"php": "~8.1 || ~8.2 || ~8.3",
"ext-filter": "*",
"ext-json": "*",
"ext-simplexml": "*",
Expand All @@ -25,12 +25,11 @@
},
"require-dev": {
"ext-pcov": "*",
"phpunit/phpunit": "^8.5.14|^9.0|^10.0",
"phpunit/phpunit": "^10.4",
"openlss/lib-array2xml": "^1.0",
"symfony/expression-language": "^2.3|^3.0|^4.0|^5.0|^6.0"
},
"conflict": {
"phpunit/phpunit": "<8.0, >=11.0"
"symfony/expression-language": "^2.3|^3.0|^4.0|^5.0|^6.0",
"symfony/cache": "^2.3|^3.0|^4.0|^5.0|^6.0",
"symfony/var-exporter": "^2.3|^3.0|^4.0|^5.0|^6.0"
},
"suggest": {
"openlss/lib-array2xml": "In order ot use Coduo\\PHPMatcher\\Matcher\\XmlMatcher",
Expand Down Expand Up @@ -64,7 +63,7 @@
"tools\/vendor\/bin\/php-cs-fixer fix --using-cache=no"
],
"test" : [
"vendor\/bin\/phpunit"
"vendor\/bin\/phpunit --coverage-html var/phpunit/coverage/html --coverage-filter src"
],
"test:mutation": [
"Composer\\Config::disableProcessTimeout",
Expand Down
Loading

0 comments on commit d107768

Please sign in to comment.