composer global require friendsofphp/php-cs-fixer
after successfully installation of PHP-CS-FIXER
now install PHP-CS-FIXER VSCODE Extension
in VSCODE User Settings
press Ctrl+, to get VSCODE User Settings
"php-cs-fixer.executablePath": "php-cs-fixer.bat",
"php-cs-fixer.executablePathWindows": "php-cs-fixer.bat",
"php-cs-fixer.onsave": true,
//If you want to create a custom config for php-cs-fixer
//create a .php_cs file in this C:\Users\username\.vscode directory
"php-cs-fixer.config": "C:\\Users\\username\\.vscode\\.php_cs",
That's all! Hope this will help you!
There's no php-cs-fixer.bat, and that executablePath wouldn't work unless the environment variable PATH is updated. This gist is lacking a lot of information.