Skip to main content

Laragon

2023


How to run cron jobs on Windows

·8 mins
Laragon 6 added the ability to run cron jobs. Here is an example on how to run them on Windows using Cronical.

How to update the PHP version in Laragon

·9 mins
Updating the version of PHP is probably the most common change I make in Laragon. The ability to switch from PHP 7.4 to PHP 8.2 in a few clicks is Laragon’s magic

2022


2021


How to Set up VS Code to use PHP with Xdebug 3 on Windows

·11 mins
VS Code with PHP and Xdebug 3 Xdebug 3 is an extremely powerful debugging tool for PHP. Although print_r(), var_dump() and dd() have their uses, Xdebug gives more powerful debugging options: step debugging allows the ability to view execution of each line of code, including the ability to view all variables and their values. Code coverage is useful to identify untested code, or code which is never executed (dead code).