-
Hi, I get this error when I try to require vanilo/framework, while following the install instructions :
I'm using Laravel v9.41.0 and PHP v8.1.7 How can I fix this ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
The Vanilo Framework has no frontend assets. It has no dependencies or constraints on Vite or any other frontend tooling, thus your issue is unrelated to the Vanilo Framework |
Beta Was this translation helpful? Give feedback.
-
I tested installing other packages and I have no issues though. It is weird because I understand how Vanilo have nothing to do with Vite, but it only happens when I try install this specific package. Any idea where I should start digging ? Could it be some kind of compatibility issues with Laravel 9 ? They've been switching to Vite quiet recently... |
Beta Was this translation helpful? Give feedback.
-
Okay this is really silly, as always... I'm using zsh and in that shell, you have to put the version number in double quotes, otherwise it does some kind of interpretions. So to fix this :
Now composer finally informs me that I'm missing some extensions, but that I know how to fix. Thanks alot for the reactivity ! |
Beta Was this translation helpful? Give feedback.
Okay this is really silly, as always... I'm using zsh and in that shell, you have to put the version number in double quotes, otherwise it does some kind of interpretions. So to fix this :
composer require vanilo/framework "^3.1"
instead ofcomposer require vanilo/framework ^3.1
Now composer finally informs me that I'm missing some extensions, but that I know how to fix.
Thanks alot for the reactivity !