Skip to content

Commit e5f3718

Browse files
Merge pull request #58 from magento-commerce/MCLOUD-7984
MCLOUD-7984: Upgrade xDebug extension version
2 parents e1209f3 + e1d9482 commit e5f3718

File tree

18 files changed

+41
-79
lines changed

18 files changed

+41
-79
lines changed

images/php/7.2-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ RUN pecl install -o -f \
127127
raphf \
128128
redis \
129129
ssh2-1.1.2 \
130-
xdebug-2.6.1 \
130+
xdebug-3.0.4 \
131131
yaml
132132

133133
RUN curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \

images/php/7.2-cli/etc/php-xdebug.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Xdebug settings will only kick in if the Xdebug module is loaded
2-
xdebug.remote_enable = 1
3-
xdebug.remote_port = 9001
4-
xdebug.remote_autostart = 0
5-
xdebug.remote_connect_back = 0
6-
xdebug.scream = 0
2+
xdebug.mode = debug
3+
xdebug.client_port = 9001
4+
xdebug.start_with_request = trigger
5+
xdebug.discover_client_host = false
6+
xdebug.scream = false
77
xdebug.show_local_vars = 1
88
xdebug.idekey = PHPSTORM

images/php/7.2-fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ RUN pecl install -o -f \
105105
raphf \
106106
redis \
107107
ssh2-1.1.2 \
108-
xdebug-2.6.1 \
108+
xdebug-3.0.4 \
109109
yaml
110110

111111
RUN curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \

images/php/7.2-fpm/etc/php-xdebug.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Xdebug settings will only kick in if the Xdebug module is loaded
2-
xdebug.remote_enable = 1
3-
xdebug.remote_port = 9001
4-
xdebug.remote_autostart = 0
5-
xdebug.remote_connect_back = 0
6-
xdebug.scream = 0
2+
xdebug.mode = debug
3+
xdebug.client_port = 9001
4+
xdebug.start_with_request = trigger
5+
xdebug.discover_client_host = false
6+
xdebug.scream = false
77
xdebug.show_local_vars = 1
88
xdebug.idekey = PHPSTORM

images/php/7.3-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ RUN pecl install -o -f \
124124
propro \
125125
raphf \
126126
redis \
127-
xdebug-2.7.1 \
127+
xdebug-3.0.4 \
128128
yaml
129129

130130
RUN curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \

images/php/7.3-cli/etc/php-xdebug.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Xdebug settings will only kick in if the Xdebug module is loaded
2-
xdebug.remote_enable = 1
3-
xdebug.remote_port = 9001
4-
xdebug.remote_autostart = 0
5-
xdebug.remote_connect_back = 0
6-
xdebug.scream = 0
2+
xdebug.mode = debug
3+
xdebug.client_port = 9001
4+
xdebug.start_with_request = trigger
5+
xdebug.discover_client_host = false
6+
xdebug.scream = false
77
xdebug.show_local_vars = 1
88
xdebug.idekey = PHPSTORM

images/php/7.3-fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ RUN pecl install -o -f \
102102
propro \
103103
raphf \
104104
redis \
105-
xdebug-2.7.1 \
105+
xdebug-3.0.4 \
106106
yaml
107107

108108
RUN curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \

images/php/7.3-fpm/etc/php-xdebug.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Xdebug settings will only kick in if the Xdebug module is loaded
2-
xdebug.remote_enable = 1
3-
xdebug.remote_port = 9001
4-
xdebug.remote_autostart = 0
5-
xdebug.remote_connect_back = 0
6-
xdebug.scream = 0
2+
xdebug.mode = debug
3+
xdebug.client_port = 9001
4+
xdebug.start_with_request = trigger
5+
xdebug.discover_client_host = false
6+
xdebug.scream = false
77
xdebug.show_local_vars = 1
88
xdebug.idekey = PHPSTORM

images/php/7.4-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ RUN pecl install -o -f \
114114
propro \
115115
raphf \
116116
redis \
117-
xdebug-2.9.8 \
117+
xdebug-3.0.4 \
118118
yaml
119119

120120
RUN curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \

images/php/7.4-cli/etc/php-xdebug.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Xdebug settings will only kick in if the Xdebug module is loaded
2-
xdebug.remote_enable = 1
3-
xdebug.remote_port = 9001
4-
xdebug.remote_autostart = 0
5-
xdebug.remote_connect_back = 0
6-
xdebug.scream = 0
2+
xdebug.mode = debug
3+
xdebug.client_port = 9001
4+
xdebug.start_with_request = trigger
5+
xdebug.discover_client_host = false
6+
xdebug.scream = false
77
xdebug.show_local_vars = 1
88
xdebug.idekey = PHPSTORM

0 commit comments

Comments
 (0)