Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 1ad2987

Browse files
authored
Update extension IDs to new ones (CI Ignore)
1 parent 020d2fc commit 1ad2987

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

containers/php-mariadb/.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
// Add the IDs of extensions you want installed when the container is created.
1212
"extensions": [
13-
"felixfbecker.php-debug",
14-
"felixfbecker.php-intellisense",
13+
"xdebug.php-debug",
14+
"bmewburn.vscode-intelephense-client",
1515
"mrmlnc.vscode-apache"
1616
],
1717

containers/php/.devcontainer/base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
2424
RUN yes | pecl install xdebug \
2525
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
2626
&& echo "xdebug.mode = debug" >> /usr/local/etc/php/conf.d/xdebug.ini \
27-
&& echo "xdebug.start_with_request = yes" >> /usr/local/etc/php/conf.d/xdebug.ini \
27+
&& echo "xdebug.start_with_request = trigger" >> /usr/local/etc/php/conf.d/xdebug.ini \
2828
&& echo "xdebug.client_port = 9000" >> /usr/local/etc/php/conf.d/xdebug.ini \
2929
&& rm -rf /tmp/pear
3030

containers/php/.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Update VARIANT to pick a PHP version: 8, 8.1, 8.0, 7, 7.4
77
// Append -bullseye or -buster to pin to an OS version.
88
// Use -bullseye variants on local on arm64/Apple Silicon.
9-
"VARIANT": "8-apache-bullseye",
9+
"VARIANT": "8.1-apache-bullseye",
1010
"NODE_VERSION": "lts/*"
1111
}
1212
},
@@ -18,7 +18,7 @@
1818

1919
// Add the IDs of extensions you want installed when the container is created.
2020
"extensions": [
21-
"felixfbecker.php-debug",
21+
"xdebug.php-debug",
2222
"bmewburn.vscode-intelephense-client",
2323
"mrmlnc.vscode-apache"
2424
],

0 commit comments

Comments
 (0)