This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Hernán Cervera edited this page Mar 31, 2020
·
2 revisions
Welcome to the wiki! 👨💻
Only collaborators and follow the process in Collaborators contribution workflow.
- Text editor: VSCode
- PHP, Apache and MySQL: XAMPP
- (Optional) HTTP client (API debugger): Insomnia or Postman
For the sake of coding style consistency, choose Prettier
as your default formatter for HTML, CSS and JS; choose Intelephense as your default PHP formatter. Make sure to toogle on Format On Save
.
PHP Debug helps a lot at finding any bugs you might have with PHP (as any debugger should do). Open PHP/HTML/JS In Browser makes it trivial to open a file in localhost. Both extensions require some configuration, but it is very well worth it.
My settings (in VSCode's settings.json) for Open PHP/HTML/JS In Browser
{
"open-php-html-js-in-browser.selectedBrowser": "Chrome",
"open-php-html-js-in-browser.urlToOpen": "http://localhost/",
"open-php-html-js-in-browser.documentRootFolder": "C:\\xampp\\htdocs",
}