Skip to content

Commit 31b7c81

Browse files
committed
Add devcontainer configuration for development
Add a root-level devcontainer for developing the SQLite driver and running all test suites. This is separate from the existing WordPress- specific devcontainer in wordpress/.devcontainer/. The configuration provides: - PHP 8.4 with pdo_sqlite extension - Composer (included in the base image) - Node.js 20 (for Playwright E2E tests) - Docker-in-Docker (for WordPress integration tests)
1 parent a8e796d commit 31b7c81

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "SQLite Database Integration",
3+
"image": "mcr.microsoft.com/devcontainers/php:8.4",
4+
"features": {
5+
"ghcr.io/devcontainers/features/node:1": {
6+
"version": "20"
7+
},
8+
"ghcr.io/devcontainers/features/docker-in-docker:2": {
9+
"moby": false
10+
}
11+
},
12+
"postCreateCommand": "composer install"
13+
}

0 commit comments

Comments
 (0)