Blog
April 13, 2021
Amazon SES and how to track Laravel Emails & Notifications
I've been working on a project where the requirement was to send emails via Amazon SES and track deliverability status with webhooks
. Not surprisingly, at least for me, the ride wasn't a...
February 16, 2021
Contract Test
When testing 3rd party API call (dealing with external resources), one of the problems is that those tests are slow. One of the solutions is to use fake classes. On the outside, the fake class...
ReadFebruary 11, 2021
Tips on testing PHP exceptions
Let's have a shamefully simple class like this: Back in the days, there were three options for how to test the exception. From PHPunit 9.0 onwards, only two remain. expectedException annotation...
ReadJanuary 15, 2021
Laravel and Hotwire Intro
Basecamp released a new tool called Hotwire that helps build new modern SPA like web apps without much javascript. It is a backend framework agnostic. Hotwire is an alternative approach to...
Read