Hi,
Strict Standards warnings shouldn't actually affect the operation of your code, so you might be able to hide these warnings if you want to stay on the same PHP version. You can either exclude E_STRICT in PHP, or disable error reporting altogether by following this guide.
Thank you,