OmniPay Stripe Payment Intent Example
This weekend I was up late in panic fixing support for Secure Customer Authentication. The Omnipay library is excellent, but some of the documentation is lacking a full example on...
Where is my.cnf? Use locate and mdfind
If you like me have trouble remebering the path to config files, locate is a wonderful little utility. The locate command is a standard and widely-used tool on most...
Override PHP Composer requirements
This is an interesting problem I recently encountered while developing a new package, how to override a requirement? If Package A requires a stable version of a library Package B,...
No need for regex
For simple operations like validating a username, there is no need to use regex. Instead, use PHP’s built in functions from the Ctype-library. $testcase
Laravel Valet with Ngrok and reserved domains
When testing webhooks, Ngrok is unbeatable. But it’s super annoying to set up a different domain every time. Also, Ngrok has a hard limit of 20 requests per minute. Luckily...