Skip to content

Commit

Permalink
Supported php84 (#2984)
Browse files Browse the repository at this point in the history
* Remove 5.x from supported versions

According to ./UPGRADE-1.0.md#php-5-eol, 5.x is no longer supported.

* Add 8.4 to supported versions

Without it, the installer script could only find the main binary
/usr/bin/php because it didn't had a version number included in the path.
Inspired by 7e6ff34
  • Loading branch information
greg0ire authored Jan 2, 2025
1 parent 40d7f8a commit c69df0a
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 @@ -2408,7 +2408,7 @@ function get_ini_settings($sourcesDir, $appsecHelperPath, $appsecRulesPath)
*/
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', '8.3'];
return ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'];
}

main();
Expand Down

0 comments on commit c69df0a

Please sign in to comment.