-
Notifications
You must be signed in to change notification settings - Fork 487
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
PHP 8.2 Support #473
PHP 8.2 Support #473
Conversation
I feel like this is way too soon. We should only add this once a stable release is out. |
True, I will probably only use them for local testing for now. (RC 1 of PHP 8.2 will be released on 1st September, therefor I thought that would be a good way to test PHP Applications on PHP 8.2 for better bug reporting, though who really would want it could already change the files locally) |
@driesvints How about a branch |
Let's see what Taylor says |
@Jubeki anything broken that you can spot? I know usually memcached is a bit late to the game in terms of being ready for new PHP versions. |
Everything seems to work fine for me. Repo: https://github.com/Jubeki/laravel-sail-test-php82 Steps for testing: git clone [email protected]:Jubeki/laravel-sail-test-php82.git
cd caravel-sail-test-php82
cp .env.example .env
composer install --ignore-platform-reqs
sail up -d
sail composer update --ignore-platform-reqs
sail artisan key:generate
sail php --version
open http://0.0.0.0 |
@taylorotwell I don't know why, but currently it install I also checked, with |
Hi all, Is that intentional ? If yes, why ? |
That was intentional, because some extensions are only build after the release of PHP8.2 and could not be installed at that time. It seems like right now only the extension |
Well, thanks for the explaination! Looking forward for the PR to be merged! |
This adds the
Dockerfile
for PHP 8.2. Default version is still PHP 8.1