install php7 runtime brackets

Solutions on MaxInterview for install php7 runtime brackets by the best coders in the world

showing results for - "install php7 runtime brackets"
Viktoria
29 Aug 2017
1// PHP Tooling default configuration settings
2"php": {
3        "enablePhpTooling": true, //false to disable PHP features
4	"executablePath": "php",//Path format: "C:\\path\\to\\php.exe" for WIN  or "/Users/someuser/bin/php" for MAC & Linux
5	"memoryLimit": "4095M", //Specify a memory limit for the PHP language server process
6	"validateOnType": "false" //Configuration to have diagnostics "on type" or "on save"
7}
8//Note: Don't forget to remove comments while using as valid JSONs can't have comments.