sneakyimp Do you have any tips for folks upgrading from 7.4 to 8?
Hmm...not really, other than it probably would have been easier for me if the old PHP app I was working on was more modular and leveraged compose
and such for external modules. The one good thing was that we had a fairly extensive test suite for the main part of the app (it's API endpoints), so a lot of it was run the tests, research the resulting errors, fix them, search for other places in the code we used the offending function, syntax, whatever, then rinse and repeat. 🙂
The good news is that as part of it, I simplified how the Docker images were built by using an official PHP/Apache image, so at least for the near term I should be able to update the PHP version by modifying the first line of /Dockerfile
and then running the tests and seeing what happens.
FROM php:8.1.9-apache
🙂