Creating custom assertions with PHPUnit
16th November 2017 3:15 pm
Today I've been working on a library I'm building for making it easier to build RESTful API's with Laravel. It uses an abstract RESTful…
16th November 2017 3:15 pm
Today I've been working on a library I'm building for making it easier to build RESTful API's with Laravel. It uses an abstract RESTful…
6th November 2017 12:00 pm
It's unfortunately quite easy to neglect to remove debugging statements in PHP code. I've done so many times myself, and it's not unknown…
29th October 2017 7:31 pm
My earlier post about integrating Laravel and Azure storage seems to have become something of a go-to resource on this subject (I suspect…
20th October 2017 9:55 pm
Laravel has support out of the box for using Redis. However, by default it uses a Redis client written in PHP, which will always be a little…
3rd October 2017 10:56 pm
When implementing fuzzy search, many developers reach straight for specialised tools like Elasticsearch. However, for simple implementations…