Skip to content
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

[1.x] Updates deprecation warning for php-8.0:al2 #240

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/BuildProcess/ValidateManifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ protected function warnAboutDeprecations()

if (Manifest::runtime($this->environment) === 'php-8.0:al2') {
Helpers::warn(
'The runtime "php-8.0:al2" will be deprecated on November 26th, 2023 when PHP 8.0 stops receiving security updates.'
.' From this date, it will not be possible to deploy new environments using this runtime and support will be removed for existing runtimes on February 26, 2024.'
'The runtime "php-8.0:al2" is now deprecated and it is no longer possible to deploy new environments using this runtime. Support will be removed for existing runtimes on February 26, 2024.'
.' For a full list of supported runtimes, please see: https://docs.vapor.build/1.0/projects/environments.html#runtime'
);
}
Expand Down