How to Implement a DDD Use Case in PHP
PHP 8.4.0 RC4 available for testing; Tools to upgrade your PHP version; and PHP Stan 2.0.
🛳️ This is how Laravel Shipper Works
PHP
📚 Implementing a DDD Use Case in PHP
This article explores a Domain-Driven Design (DDD) Use Case model in PHP, demonstrating how to utilize interfaces and domain-specific classes to manage data persistence. We’ll examine the TaxPersistUseCase class, which uses a persistence manager (TaxManagerInterface) to save an entity of type Tax, representing a tax.
📚 That Strange PHP Code in Frameworks and CMSs
This article discusses a PHP code snippet that you’ve likely seen at the top of your favorite CMS or framework. You’ve probably read that you should always include it at the beginning of every PHP file you develop, for security reasons, although without a very clear explanation of why.
PHPStan just released v2.0.0 this week! This massive update is three years in the making, consisting of over 180 items in the release. Creator Ondřej Mirtes had this to say about the release of PHPStan 1.0 over three years ago and now releasing 2.0.
📚 Upgrade your PHP projects using these tools & tips
The PHP ecosystem is full of tools that can help you write better code and have a more robust project, use them!
📚 Mastering Architectural Rules in PHP Projects with PHP Arkitect
How to Use PHP Arkitect to Define, Enforce, and Maintain Clean Code Structures.
📚 Optimizing PHP Performance for High-Traffic Websites: Best Practices and Techniques
This guide will walk you through the most effective strategies to boost PHP performance for high-traffic websites.
📚 How to Speed Up Bulk Email Sending in PHP with Queues, Workers, and Cron Jobs
In this post, we’ll explore how to handle bulk email sending efficiently using queues, workers, and cron jobs.
📚 Manipulating Strings with PHP: A Comprehensive Guide
PHP offers a rich set of built-in functions and techniques for working with strings, enabling developers to process, transform, and extract information from textual data effectively.
📚 5-Star Guide to Securing Your PHP, MySQL, cPanel & WHM Server Against Malware
Is your server truly protected against malware? With the increasing threats facing online platforms today, a single weak point can compromise your entire site, disrupt services, or open the door to unauthorized access. But where do you start with server security, and how do you prioritize each action?
📚 PHP 8.4.0 RC4 available for testing
The PHP team is pleased to announce the release of PHP 8.4.0, RC4. This is the fourth release candidate, continuing the PHP 8.4 release cycle, the rough outline of which is specified in the PHP Wiki.
📚 PHP Blunders You Can’t Afford to Make - Here’s What to Do Instead!
Working with PHP can feel like tiptoeing through a minefield sometimes. Its versatility is unmatched, but it has quirks that can trip you up in frustrating, time-sucking ways.
Laravel
📚 Securing Laravel Applications with Stephen Rees-Carter
Join us as Stephen Rees-Carter delves into Laravel security, discussing security consulting, the importance of penetration testing, and common vulnerabilities found in Laravel applications.
📚 Best Redis Caching Strategy in Laravel: A Guide to Fast and Efficient Caching
In this guide, we’ll look at effective caching strategies in Laravel with Redis. We’ll cover how to cache data, manage expiration times, and efficiently clear caches.
📚 Working with multiple image select in Laravel Livewire
In this article, I am going to show you a simple idea to fix the loss of previously selected image/images whenever you want to select more images using livewire with laravel.
📚 Monitoring Cache Operations in Laravel: Events Guide
Want to track what’s happening with your cache? Laravel’s cache events let you monitor every operation! Let’s explore how to leverage these powerful events.
📚 How to implement a global transaction for all routes in laravel
Let’s say you have a Create Order API. The first thing you will do is store the order in the orders table in your database then store the products of that order in a separate table,order_products table for example.
Laracon AU has begun and with it comes exciting news from Taylor and the rest of the Laravel team. Announcing Laravel Nightwatch! First-class monitoring designed for Laravel.
📚 The magic behind Laravel’s new defer() helper
Laravel has recently been shipped with a new helper called defer() which can be used to defer the execution of a callback until after a successful response has been sent.
Someone asked me: why Tempest? What areas do I expect Tempest to be better in than Laravel or Symfony? What gives me certainty that Laravel or Symfony won’t just be able to copy what makes Tempest currently unique? What is Tempest’s unfair advantage compared to existing PHP frameworks?
📚 Cross-Process Lock Management in Laravel
Working with locks across different processes? Laravel’s Cache lock system lets you acquire, restore, and release locks seamlessly across requests and jobs! Let’s explore this powerful feature.
📚 Laravel — New defer() Function
The game-changer you didn’t know you needed! Laravel 11 introduced an exited function called defer() that will probably change the way you perform time-consuming actions . Let’s understand what this function does and which problems it solves.

