Infusionsoft SDK not compatible with PHP 7.2

Hello,
Does anyone have an idea about how to migrate infusionsoft SDK with compatible PHP 7.2?

When we are trying to upgrade PHP version 7.2 into our site we got the errors like as below

FILE: /dom19880/wp-content/plugins/customization-over-theme/src/xmlrpc-3.0/demo/client/mail.php

FOUND 13 ERRORS AFFECTING 11 LINES

3 | ERROR | Global variable ‘$HTTP_GET_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_GET instead
3 | ERROR | Global variable ‘$HTTP_GET_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_GET instead
20 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
21 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
23 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
23 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
24 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
30 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
31 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
32 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
33 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
34 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
35 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead

FILE: /dom19880/wp-content/plugins/customization-over-theme/src/xmlrpc-3.0/demo/client/client.php

FOUND 5 ERRORS AFFECTING 4 LINES

11 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
13 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
16 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
16 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead
18 | ERROR | Global variable ‘$HTTP_POST_VARS’ is deprecated since PHP 5.3 and removed since PHP 5.4; Use $_POST instead

Please let me know if anyone has a solution
Thank You

You might try going into the file and global replace http_post_vars with _post or use an earlier version of the api support files that don’t use that compatability hack

I’m currently using PHP 7.2 and haven’t had any issues with their current PHP SDK release. I don’t recognize those files.