Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.24 KB

DEVELOPER.md

File metadata and controls

26 lines (17 loc) · 1.24 KB

Developer Notes

To take part of the Development we recommend you to use the following tools

Run from Visual Studio Code

This project comes with a tasks.json for VSC (Visual Studio Code).
It uses the built-in web server from PHP >= 5.4

These are the steps on how to run the project

  • press F1 and type "task" followed by "Run PHP Server"
  • Open the URL http://localhost:9000 in your favorite browser

Debugging with Visual Studio Code

For debugging purposes Visual Studio Code uses the launch.json and the PHP Debug extensions.

  • press F5 to debug the PHP file (optional: PHP Debug extension is required)
  • add breakpoints to any php file
  • Open the URL http://localhost:9000 in your favorite browser

More details on how to debug PHP (using xdebug) please read here