aboutsummaryrefslogtreecommitdiff
path: root/src/php/devcontainer-feature.json
blob: 11435ec39bdc1fd7a1b48768809b9b026fc7df96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
    "id": "php",
    "name": "PHP",
    "options": {
        "version": {
            "type": "string",
            "proposals": [
                "latest",
                "8.0.16"
            ],
            "default": "latest",
            "description": "Select or enter a PHP version"
        },
        "install_composer": {
            "type": "boolean",
            "default": true,
            "description": "Install PHP Composer?"
        },
        "override_default_version": {
            "type": "boolean",
            "default": "true",
            "description": "If true, overrides existing version (if any) of dotnet on the PATH"
        }
    },
    "extensions": [
        "xdebug.php-debug",
        "bmewburn.vscode-intelephense-client",
        "xdebug.php-pack",
        "devsense.phptools-vscode"
    ],
    "containerEnv": {
        "PHP_PATH": "/usr/local/php/current",
        "PATH": "${PHP_PATH}/bin:${PATH}"
    }
}