-
When running Laravel application using command "php artisan octane:frankenphp" will be running using php version 8.4.1, because that my application is crash. How i can change php version using when running that command ? PHP Version
Composer.json
|
Beta Was this translation helpful? Give feedback.
Answered by
dunglas
Dec 18, 2024
Replies: 1 comment 3 replies
-
Hi, The easiest way is to use Docker, and select the Docker image for the PHP version you want: https://laravel.com/docs/11.x/octane#frankenphp-via-docker Change |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
zgramming
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
The easiest way is to use Docker, and select the Docker image for the PHP version you want: https://laravel.com/docs/11.x/octane#frankenphp-via-docker
Change
FROM dunglas/frankenphp
byFROM dunglas/frankenphp:php8.3
for instance.