A package for snapshot testing in PHPUnit
My colleague Sebastian recently released a new package called phpunit-snapshot-assertions. In a new post on his blog he tells all about it. The gist of snapshot testing is asserting that a set of dat…
My colleague Sebastian recently released a new package called phpunit-snapshot-assertions. In a new post on his blog he tells all about it. The gist of snapshot testing is asserting that a set of dat…
On his blog Matt Stauffer published a new post explaining the steps required to deploy your app without any downtime. The reason you’re getting zero-downtime deploy from these tools is because the en…
In the JavaScript world promises are a great way to deal with stuff that needs to happen asynchronously. But there’s also another new way to go about it: async/await. In case you missed it, Node now…
You might thing that PHP is not able to automatically perform a type check on items in an array. But using variadic constructor this is possible. Bert Ramakers wrote a blogpost with some good example…
Michael Dyrynda, one of the co-hosts of the Laravel News and the North Meets South podcasts, explains how to easily uptime your models with data coming from requests. Instead of littering your contro…
A few months ago I installed a command line utility called hub. I’m really fond of it. It’s aim is to make it easier to interact with GitHub from the commandline. It’s a wrapper around the standard…