PHP extensions / Filament #91
-
Hi. I am trying to add Spin to an existing Laravel project running Filament. I am not able to initialize the Spin template, due to the below errors:
Does anyone know how to proceed from here? |
Beta Was this translation helpful? Give feedback.
Answered by
jaydrogers
Aug 12, 2024
Replies: 1 comment 5 replies
-
It looks like you may need to install the Since the image is based on serversideup/php, you can find the docs how to do that here: https://serversideup.net/open-source/docker-php/docs/customizing-the-image/installing-additional-php-extensions#intl You can see I specifically call out the Hope this helps! |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
jaydrogers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like you may need to install the
intl
package.Since the image is based on serversideup/php, you can find the docs how to do that here: https://serversideup.net/open-source/docker-php/docs/customizing-the-image/installing-additional-php-extensions#intl
You can see I specifically call out the
intl
package at the bottom.Hope this helps!