1
|
{
|
2
|
"folders": [
|
3
|
{
|
4
|
"path": "."
|
5
|
}
|
6
|
],
|
7
|
"settings": {
|
8
|
"php-cs-fixer.onsave": true,
|
9
|
"php-cs-fixer.rules": "@PSR-2",
|
10
|
"php-cs-fixer.config": ".php_cs;.php_cs.dist",
|
11
|
"php-cs-fixer.executablePath": "/home/unknown/projects/aswi2020sebela/website/vendor/bin/php-cs-fixer"
|
12
|
},
|
13
|
"extensions": {
|
14
|
"recommendations": [
|
15
|
"vscode-icons-team.vscode-icons",
|
16
|
"felixfbecker.php-intellisense",
|
17
|
"ikappas.phpcs",
|
18
|
"junstyle.php-cs-fixer"
|
19
|
]
|
20
|
},
|
21
|
"tasks": {
|
22
|
"version": "2.0.0",
|
23
|
"taskName": "Install dependencies",
|
24
|
"type": "shell",
|
25
|
"presentation": {
|
26
|
"reveal": "always",
|
27
|
"panel": "new"
|
28
|
},
|
29
|
"command": "../scripts/composer.sh install",
|
30
|
"windows": {
|
31
|
"command": "..\\scripts\\composer.bat install"
|
32
|
},
|
33
|
}
|
34
|
}
|