* set default php version to 81 in quick scripts

This commit is contained in:
2023-11-18 17:42:43 +03:00
parent b1b2e1d501
commit 2049580005
3 changed files with 14 additions and 4 deletions

View File

@ -27,7 +27,7 @@ xdebug_status ()
xdebug_start ()
{
echo 'Start xDebug'
echo 'Start xDebug2'
# And uncomment line with xdebug extension, thus enabling it
ON_CMD="sed -i 's/^;zend_extension=/zend_extension=/g' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini"
@ -48,7 +48,7 @@ xdebug_start ()
xdebug_stop ()
{
echo 'Stop xDebug'
echo 'Stop xDebug2'
# Comment out xdebug extension line
OFF_CMD="sed -i 's/^zend_extension=/;zend_extension=/g' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini"

View File

@ -27,7 +27,7 @@ xdebug_status ()
xdebug_start ()
{
echo 'Start xDebug'
echo 'Start xDebug3'
# And uncomment line with xdebug extension, thus enabling it
ON_CMD="sed -i 's/^;zend_extension=/zend_extension=/g' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini"
@ -42,7 +42,7 @@ xdebug_start ()
xdebug_stop ()
{
echo 'Stop xDebug'
echo 'Stop xDebug3'
# Comment out xdebug extension line
OFF_CMD="sed -i 's/^zend_extension=/;zend_extension=/g' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini"