Tags > php

Posted on 02 August 2026

Self-hosted PHPUnit Code Coverage Reports

I developed and maintain the HIBP-PHP package which is currently at time of writing, hosted on GitHub. It contains a complete test suite and for some time, I've pushed the code coverage clover XML report to CodeCov. However, my plan is to move this repo from GitHub for numerous reasons to Codeberg. Welcome self-hosting the reports with MinIO and nginx.

Posted on 29 April 2021

Integrating HaveIBeenPwned into Laravel Fortify

The HaveIBeenPwned service provided by Troy Hunt contains a whole trove of breach information. It enables you to look up single email address, whole domains and whether a password has been seen in a data breach, for example. It's the latter one that we're interested in for this feature. Let's implement this using the icawebdesign/hibp-php framework-agostic composer package.

Posted on 21 October 2018

PHP, Docker, Xdebug and the missing local variables

I've made a switch in the last 12 months to use Docker as my local development environment for my PHP applications. One of the greatest modules for PHP IMHO, is Xdebug. Many moons ago, I used to frantically hack in var_dump(...); exit; calls to see what a particular variable, object, array, etc contained.