Skip to content

Commit

Permalink
add php 7.1 for cent8
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jul 2, 2020
1 parent b560043 commit 821eb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion managePHP/phpManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def findPHPVersions():
if distro == ProcessUtilities.centos:
return ['PHP 5.3', 'PHP 5.4', 'PHP 5.5', 'PHP 5.6', 'PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4']
elif distro == ProcessUtilities.cent8:
return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4']
return ['PHP 7.1','PHP 7.2', 'PHP 7.3', 'PHP 7.4']
elif distro == ProcessUtilities.ubuntu20:
return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4']
else:
Expand Down

2 comments on commit 821eb4e

@Tangol
Copy link

@Tangol Tangol commented on 821eb4e Jul 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please also add PHP 7.0.33 and PHP 5.6.40, as many users like me work with older frameworks that don't support newer PHP versions.
Thanks!

@qtwrk
Copy link
Collaborator

@qtwrk qtwrk commented on 821eb4e Jul 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think CentOS 8 does not support php56 and php70 anymore

if you want to use them , you may need to use CentOS 7

Please sign in to comment.