Skip to content

Instantly share code, notes, and snippets.

@machour
Created August 28, 2022 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save machour/7b018783c492a3c1e588c79686e9ec7e to your computer and use it in GitHub Desktop.
Save machour/7b018783c492a3c1e588c79686e9ec7e to your computer and use it in GitHub Desktop.
VsCode settings for PHP
// extensions.json
{
"recommendations": [
"lacroixdavid1.vscode-format-context-menu",
"bmewburn.vscode-intelephense-client",
"EditorConfig.EditorConfig"
]
}
// settings.json
{
"php.suggest.basic": false,
"php.validate.enable": false,
"php.format.codeStyle": "PSR-2",
"intelephense.environment.phpVersion": "8.0.0",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"files.eol": "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment