Root composer.json requires php ^7.2 but your php version (8.2.1) does not satisfy that requirement.
Ran the installer and it auto installed PHP 8.
Root composer.json requires php ^7.2 but your php version (8.2.1) does not satisfy that requirement.
I'm getting the same error when running the installer. I've not tried a manual install yet.
I have the same issue. Trying to install it in fresh raspberry pi and have php 7.3, which is the current version, but then the installer requested the 8.3. Will try to update the config files, but it's not working as expected by the installer. Using bullseye.
I solved that problem, but not without some pain. Here is how to fix it:
apt purge php apt purge php8.1 apt purge php8.3 apt purge php8.3.4 apt install php8.1 a2enmod php8.1 apt remove php8.1 add-apt-repository ppa:ondrej/php apt update apt install php8.1 a2dismod php8.2 a2enmod php8.1 apt purge libapache2-mod-php8.1 libapache2-mod-php apt install libapache2-mod-php8.1 libapache2-mod-php a2enmod proxy_fcgi setenvif a2enconf php8.1-fpm systemctl restart apache2
On Tue, Jun 25, 2024 at 10:09 PM Iñaki Berra @.***> wrote:
I have the same issue. Trying to install it in fresh raspberry pi and have php 7.3, which is the current version, but then the installer requested the 8.3. Will try to update the config files, but it's not working as expected by the installer. Using bullseye.
— Reply to this email directly, view it on GitHub https://github.com/mudpi/installer/issues/12#issuecomment-2190396253, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7TZT33ZUVV6TGWM465CDH3ZJIPD5AVCNFSM6AAAAABJ45WBTKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOJQGM4TMMRVGM . You are receiving this because you are subscribed to this thread.Message ID: @.***>
--
Sent from my 64 bit AMD® Ryzen 5 5600g 6 core hp Pavilion desktop running Ubuntu Linux 22.04
Basically the installer needs to be updated.
Its the dependencies that are outdated. There was a new PiOS that I need to check into as well.
Install newer version of PHP and everything. I will work on this when I get a chance to. Happy to take any PRs.