| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "PHP",
- "image": "mcr.microsoft.com/devcontainers/php",
- "customizations": {
- "vscode": {
- "extensions": [
- "github.codespaces",
- "xdebug.php-debug",
- "bmewburn.vscode-intelephense-client",
- "xdebug.php-pack",
- "DEVSENSE.phptools-vscode",
- "DEVSENSE.composer-php-vscode",
- "EditorConfig.EditorConfig",
- "dbaeumer.vscode-eslint",
- "raymondcamden.CSSLint",
- "recca0120.vscode-phpunit",
- "hbenl.vscode-mocha-test-adapter"
- ]
- },
- "codespaces": {
- "openFiles": [
- "README.md",
- "doc/README.md"
- ],
- "repositories": {
- "PrivateBin/*": {
- "permissions": {
- "pull_requests": "write"
- }
- }
- }
- }
- },
- "features": {
- "ghcr.io/devcontainers-contrib/features/mocha:2": {}
- },
- "forwardPorts": [
- 8080
- ],
- "postCreateCommand": ".devcontainer/postCreateCommand.sh",
- // alternatiuve: apache2ctl start (but requires root)
- "postAttachCommand": "php -S 0.0.0.0:8080"
- }
|