-
-
Notifications
You must be signed in to change notification settings - Fork 86
Support PHP 8.3 #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Support PHP 8.3 #470
Changes from 8 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a8d45c5
wip
rogervila 401de85
wip
rogervila 8b7ae9a
wip
rogervila 057dba4
wip
rogervila c6f4701
wip
rogervila 71f0eaa
wip
rogervila a400278
wip
rogervila a1f9476
wip
rogervila 000536e
Merge branch '6.x' into php-83
rogervila 92c1896
wip
rogervila 37eab74
wip
rogervila c5b50ed
wip
rogervila 054553a
wip
rogervila f883d78
wip
rogervila e4f575b
wip
rogervila 0cc77db
wip
rogervila File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ var/ | |
.DS_Store | ||
.idea | ||
.phpunit.cache/ | ||
composer.lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
} | ||
], | ||
"require": { | ||
"php": "~8.1 || ~8.2", | ||
"php": "~8.1 || ~8.2 || ~8.3", | ||
"ext-filter": "*", | ||
"ext-json": "*", | ||
"ext-simplexml": "*", | ||
|
@@ -25,13 +25,10 @@ | |
}, | ||
"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" | ||
}, | ||
"suggest": { | ||
"openlss/lib-array2xml": "In order ot use Coduo\\PHPMatcher\\Matcher\\XmlMatcher", | ||
"symfony/expression-language" : "In order to use Coduo\\PHPMatcher\\Matcher\\ExpressionMatcher" | ||
|
@@ -64,7 +61,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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The coverage config has been inlined here and removed from the XML configuration since Infection does not recognize it properly. |
||
], | ||
"test:mutation": [ | ||
"Composer\\Config::disableProcessTimeout", | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.