Skip to content

Commit ba3f2f2

Browse files
committed
php: fix deploy script and add extra versions
1 parent e81fc5d commit ba3f2f2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

php/frontend.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
import os
88
import shutil
9-
from .utils import replace
10-
from .vars import php_versions, default_version
9+
from utils import replace
10+
from vars import php_versions, default_version
1111

1212
class Frontend(object):
1313
def __init__(self, configuration, application):

php/interpretor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import os
88
import shutil
99
import subprocess
10-
from .utils import replace
11-
from .vars import php_versions
10+
from utils import replace
11+
from vars import php_versions
1212

1313
class Interpretor(object):
1414
def __init__(self, configuration, application):

php/vars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
'php5': 'php5.6',
33
'php7': 'php7.1'
44
}
5-
php_versions = ['5.6', '7.0', '7.1', '7.2']
5+
php_versions = ['5.6', '7.0', '7.1', '7.2', '8.0', '8.1', '8.2', '8.3']
66
default_version = '5.6'

0 commit comments

Comments
 (0)