-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
65 lines (65 loc) · 2.67 KB
/
devcontainer-feature.json
File metadata and controls
65 lines (65 loc) · 2.67 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"id": "php",
"name": "PHP",
"description": "Installs PHP into the Dev Environment",
"version": "2.9.0",
"documentationURL": "https://github.com/Automattic/vip-codespaces/tree/trunk/features/src/php",
"options": {
"version": {
"type": "string",
"enum": ["8.0", "8.1", "8.2", "8.3", "8.4"],
"default": "8.3",
"description": "PHP version"
},
"composer": {
"type": "boolean",
"default": true,
"description": "Whether to install Composer"
},
"install-runit-service": {
"type": "boolean",
"default": true,
"description": "Whether to install a runit service for Mailpit"
},
"lite-install": {
"type": "boolean",
"default": false,
"description": "Whether to install a minimal set of PHP extensions"
},
"skip-gmagick": {
"type": "boolean",
"default": false,
"description": "Whether to skip installing the gmagick extension"
}
},
"customizations": {
"vscode": {
"extensions": [
"mrorz.language-gettext",
"bmewburn.vscode-intelephense-client",
"MehediDracula.php-namespace-resolver",
"wongjn.php-sniffer",
"getpsalm.psalm-vscode-plugin"
],
"settings": {
"intelephense.environment.documentRoot": "/wp",
"intelephense.environment.includePaths": ["/wp"],
"intelephense.environment.phpVersion": "8.1.0",
"intelephense.stubs": [
"apcu", "bcmath", "calendar", "Core", "ctype", "curl", "date", "dom", "exif", "fileinfo", "filter", "fpm", "ftp", "gd", "gmagick", "gmp",
"hash", "iconv", "igbinary", "intl", "json", "libxml", "mbstring", "memcache", "memcached", "meta", "mysqli", "newrelic", "openssl",
"pcntl", "pcre", "PDO", "pdo_mysql", "pdo_sqlite", "Phar", "posix", "random", "Reflection", "session", "shmop", "SimpleXML", "soap", "sockets",
"sodium", "SPL", "sqlite3", "ssh2", "standard", "superglobals", "sysvsem", "sysvshm", "tokenizer", "xdebug", "xml", "xmlreader", "xmlwriter",
"Zend OPcache", "zip", "zlib"
],
"php.suggest.basic": false,
"namespaceResolver.sortAlphabetically": true,
"phpSniffer.autoDetect": true
}
}
},
"installsAfter": [
"ghcr.io/automattic/vip-codespaces/entrypoints",
"ghcr.io/automattic/vip-codespaces/base"
]
}