Skip to content

Commit

Permalink
php: fix deploy script and add extra versions
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheu committed Jun 18, 2024
1 parent e81fc5d commit ba3f2f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions php/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import os
import shutil
from .utils import replace
from .vars import php_versions, default_version
from utils import replace
from vars import php_versions, default_version

class Frontend(object):
def __init__(self, configuration, application):
Expand Down
4 changes: 2 additions & 2 deletions php/interpretor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import os
import shutil
import subprocess
from .utils import replace
from .vars import php_versions
from utils import replace
from vars import php_versions

class Interpretor(object):
def __init__(self, configuration, application):
Expand Down
2 changes: 1 addition & 1 deletion php/vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
'php5': 'php5.6',
'php7': 'php7.1'
}
php_versions = ['5.6', '7.0', '7.1', '7.2']
php_versions = ['5.6', '7.0', '7.1', '7.2', '8.0', '8.1', '8.2', '8.3']
default_version = '5.6'

0 comments on commit ba3f2f2

Please sign in to comment.