-
Notifications
You must be signed in to change notification settings - Fork 184
feat: add support for symfony 8 #968
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
Changes from 20 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
a8e3a3a
feat: add support for symfony 8
Litarnus 42d52f4
replace xml config with php
Litarnus c34bd81
restore XML tests, add yml instead of php config
Litarnus c9d26b6
pipeline
Litarnus 2852759
wip
Litarnus e34686c
wip
Litarnus 5e82e76
CS
cleptric 6ed87a1
wip
cleptric fff4fd2
wip
Litarnus 91b44dd
wip
Litarnus 9bd50a2
wip
Litarnus bbf61c6
CS
Litarnus 2b283f0
wip
Litarnus 71c0d1d
wip
Litarnus e5197cb
wip
Litarnus 9fe5d78
wip
Litarnus b2cc293
cs
Litarnus ede209d
CI
Litarnus acac51e
fix CI
Litarnus 9164fbc
remove 8.5
Litarnus 9eb5342
remove dev stability
Litarnus 4aae0be
bump http client
Litarnus b1e463b
add audit ignore
Litarnus 74597d7
add audit ignore
Litarnus 05d8413
add audit ignore
Litarnus a8112e7
CI
Litarnus 45bcc31
tests
Litarnus fbf5b39
audit
Litarnus a378a9d
guard
Litarnus c6c07a3
no security blocking
Litarnus c71a90b
wip
Litarnus 27b8874
CI
Litarnus 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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Incorrect
prefer-stablesetting causes unstable dependency resolutionThe
prefer-stablesetting is set tofalse, which tells Composer to prefer unstable package versions over stable ones. Combined withminimum-stability: dev, this could cause Composer to install dev/beta/alpha versions of all dependencies even when stable releases exist. To support Symfony 8 beta while keeping other dependencies stable,prefer-stableneeds to betrue(which is actually Composer's default when not specified). With the current setting, projects installing this bundle may get unexpected unstable versions of transitive dependencies.