-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
support sapi_windows_vt100_support for php 7.2+ #25972
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
support sapi_windows_vt100_support for php 7.2+ #25972
Conversation
@symfony/deciders should we merge this in 2.7, or should we consider it a new feature ? For reference, the automatic detection of Mintty was backported to 2.3 in the past (see #15915), so merging in 2.7 looks fine. |
For 2.7: infrastructure-related changes are bug fixes (similarly to PR fixing issues with newer versions of PHP) |
travis ci fails due to an issue on the base branch, I'll rebase these changes when it has been fixed if necessary. |
Thank you @jhdxr. |
This PR was merged into the 2.7 branch. Discussion ---------- support sapi_windows_vt100_support for php 7.2+ | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | See below | License | MIT | Doc PR | N/A php 7.2 enabled color support on windows(>=10.0.10586) and introduced a new function called `sapi_windows_vt100_support` to get and set the state. this PR add the support for this new function, so users on windows can see the colorful world again with php 7.2+. Commits ------- 5bbb77b support sapi_windows_vt100_support for php 7.2+
php 7.2 enabled color support on windows(>=10.0.10586) and introduced a new function called
sapi_windows_vt100_support
to get and set the state. this PR add the support for this new function, so users on windows can see the colorful world again with php 7.2+.