From 564cd7510cf49dbdee9b39491a5c29cbd86d9526 Mon Sep 17 00:00:00 2001 From: Carlos Reynosa Date: Sat, 7 Mar 2026 13:10:05 -0800 Subject: [PATCH 1/2] Add Deployer Dev Container Config Add deployer dev container configuration: https://github.com/devcontainers --- .devcontainer/devcontainer.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..d12893116 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,9 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/php:1": { + "version": 8.2, + "installComposer": true + } + } +} From fa0e16c1c970a52960cb027eabaf7233aaa9315e Mon Sep 17 00:00:00 2001 From: Carlos Reynosa Date: Sat, 7 Mar 2026 13:29:04 -0800 Subject: [PATCH 2/2] Update devcontainer image to PHP 8.2 Bookworm --- .devcontainer/devcontainer.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d12893116..fdda2efd2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,9 +1,3 @@ { - "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": { - "ghcr.io/devcontainers/features/php:1": { - "version": 8.2, - "installComposer": true - } - } + "image": "mcr.microsoft.com/devcontainers/php:1-8.2-bookworm" }