PHP
What the new PHP core developers will be working on
Here’s a small interview with the new developers that will receive funding via The PHP Foundation Read more
PHP
How the PHP Middleware Pattern works and can easily be applied
The Middleware Pattern allows you to easily change the input and output of an action; one layer at a time. Read more
PHP
★ Creating PHP interfaces, traits, and classes dynamically at runtime
[AdSense-A]
PHP is a wonderful dynamic language that's capable of many cool things. I recently stumbled upon something quite fantastic that I want to share with you.
PHP
★ From PHPUnit To Pest
[AdSense-A]
A couple of months I go I had the honour giving a talk at the GPUG usergroup on how to convert a PHPUnit testsuite to Pest.
Nowadays, I use Pest as the default testrunner for every package / project that I start.
PHP
★ Writing Readable PHP is now available
[AdSense-A]
I'm proud to announce that our new premium course on writing readable PHP is now available. It's called Writing Readable PHP.
This course contains a collection of bite-size tips (both in written form and videos) that make your code a joy to read for your co-workers and future self. These tips are aimed towards developers who know the basics of PHP and want to improve their craft. As a bonus, you'll learn to use static analysis to ensure that your code is understandable and correct.
Writing Readable PHP has been created by our team and Christoph Rumpel. It contains our combined knowledge on how to write the best PHP possible.
PHP
PHP isn't dead
Last month, The Laravel Documentary was released which showed the history behind Laravel. For the documentary a lot of people that are active in the Laravel community were interviewed. From the footage that did not Read more…
PHP
How to build modals with Laravel and Livewire
A super nice way to go about this, thanks to Philo. Cool stuff! Read more
PHP
Building Oh Dear’s new design: Project setup
We are currently rebuilding the Oh Dear website and application frontend. In this post, you’ll read more about the project setup and tools used. Read more
PHP
Using callbacks to prevent code duplication
DRY up code by deferring specifics to a callback. Read more