Skip to content

Commit 1b4eea0

Browse files
committed
Updated Dev env
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
1 parent 0f3f1de commit 1b4eea0

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.devcontainer/devcontainer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"extensions": [
2323
"felixfbecker.php-debug",
2424
"bmewburn.vscode-intelephense-client",
25-
"editorconfig.editorconfig"
25+
"editorconfig.editorconfig",
26+
"ikappas.phpcs",
27+
"calsmurf2904.vscode-phpstan",
28+
"ecodes.vscode-phpmd"
2629
],
2730

2831
// Use 'forwardPorts' to make a list of ports inside the container available locally.

.vscode/launch.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Listen for Xdebug",
9+
"type": "php",
10+
"request": "launch",
11+
"port": 9000
12+
}
13+
]
14+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"phpmd.rules": "${workspaceFolder}/phpmd.xml"
3+
}

0 commit comments

Comments
 (0)