Skip to content

Commit

Permalink
Update datadog-setup.php (#2417)
Browse files Browse the repository at this point in the history
8.3 was not in the list of supported versions. Which made it so that the installer script could only find the main binary /usr/bin/php because it didn't had a version number included in the path.
  • Loading branch information
markwalet authored Dec 12, 2023
1 parent bab3c44 commit e872674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datadog-setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -2164,7 +2164,7 @@ function get_ini_settings($requestInitHookPath, $appsecHelperPath, $appsecRulesP
*/
function get_supported_php_versions()
{
return ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'];
return ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'];
}

main();
Expand Down

0 comments on commit e872674

Please sign in to comment.