SymfonyCon Amsterdam 2025: The CI/CD Pipeline in 2025, GitOps, AI, and Zero-Trust in Action
https://symfony.com/blog/symfonycon-amsterdam-2025-the-ci-cd-pipeline-in-2025-gitops-ai-and-zero-trust-in-action?utm_medium=feed&utm_source=Symfony%20Blog%20Feed
https://redd.it/1ox3gi9
@r_php
https://symfony.com/blog/symfonycon-amsterdam-2025-the-ci-cd-pipeline-in-2025-gitops-ai-and-zero-trust-in-action?utm_medium=feed&utm_source=Symfony%20Blog%20Feed
https://redd.it/1ox3gi9
@r_php
Symfony
SymfonyCon Amsterdam 2025: The CI/CD Pipeline in 2025, GitOps, AI, and Zero-Trust in Action (Symfony Blog)
Join SymfonyCon Amsterdam 2025 and catch “The CI/CD Pipeline in 2025: GitOps, AI, and Zero-Trust in Action” by Hervé Leclerc, CTO at Smile, to discover the future of CI/CD with GitOps, AI, and …
New and noteworthy: PHPStan and PHPUnit integration
https://staabm.github.io/2025/11/15/phpstan-validates-phpunit-data-provider.html
https://redd.it/1oxnsw2
@r_php
https://staabm.github.io/2025/11/15/phpstan-validates-phpunit-data-provider.html
https://redd.it/1oxnsw2
@r_php
My developer experience
New and noteworthy: PHPStan and PHPUnit integration
In this article we will have a brief look into the latest update to phpstan/phpstan-phpunit 2.0.8.
Why is apache still so popular even as nginx+php-fpm has proven its mettle with performance?
As I understand, the popular consensus today is that nginx+php-fpm performs faster than apache even with the mpm_event process management enabled?
But when it comes to real world usage, many production instances I observe these days still deploy apache a lot. Even cpanel based web hosting (shared or dedicated instances) are more often apache based than nginx.
Is it due to some old habits and dependence on apache specific features like .htaccess support? Or is it the case that apache has actually caught up in the race with ngnix and the performance difference is quite negligible these days?
https://redd.it/1oxqkvq
@r_php
As I understand, the popular consensus today is that nginx+php-fpm performs faster than apache even with the mpm_event process management enabled?
But when it comes to real world usage, many production instances I observe these days still deploy apache a lot. Even cpanel based web hosting (shared or dedicated instances) are more often apache based than nginx.
Is it due to some old habits and dependence on apache specific features like .htaccess support? Or is it the case that apache has actually caught up in the race with ngnix and the performance difference is quite negligible these days?
https://redd.it/1oxqkvq
@r_php
Reddit
From the PHP community on Reddit
Explore this post and more from the PHP community
Trace routes. No static analysis BS, just captures what actually runs.
What up guys,
Been debugging a slow endpoint and had no clue which files it was actually loading. Built this package to trace the real execution path instead of guessing.
What it does:
- Records every file PHP loads during a request
- Shows memory usage and execution time
- Categorizes files (controllers, models, policies, etc.)
- Works with any Laravel route
Usage in route/***.php
TraceRouteDependencies::enable();
Route::middleware(['trace-route'])->group(function () {
Route::get('/api/users', [UserController::class, 'index']);
});
Hit the route, then check `storage/logs/traces/` for a JSON file with everything that loaded.
Example output:
{
"route": "api.users.index",
"files_loaded": {
"controllers": ["app/Http/Controllers/UserController.php"],
"models": ["app/Models/User.php"],
"policies": ["app/Policies/UserPolicy.php"]
},
"memory_used_mb": 2.5,
"execution_time_ms": 45.2
}
Kinda usefull for understanding wtf a route is doing or finding performance issues. No static analysis BS, just captures what actually runs.
https://github.com/TonyGeez/laravel-route-tracer
🤠
https://redd.it/1oxs75m
@r_php
What up guys,
Been debugging a slow endpoint and had no clue which files it was actually loading. Built this package to trace the real execution path instead of guessing.
What it does:
- Records every file PHP loads during a request
- Shows memory usage and execution time
- Categorizes files (controllers, models, policies, etc.)
- Works with any Laravel route
Usage in route/***.php
TraceRouteDependencies::enable();
Route::middleware(['trace-route'])->group(function () {
Route::get('/api/users', [UserController::class, 'index']);
});
Hit the route, then check `storage/logs/traces/` for a JSON file with everything that loaded.
Example output:
{
"route": "api.users.index",
"files_loaded": {
"controllers": ["app/Http/Controllers/UserController.php"],
"models": ["app/Models/User.php"],
"policies": ["app/Policies/UserPolicy.php"]
},
"memory_used_mb": 2.5,
"execution_time_ms": 45.2
}
Kinda usefull for understanding wtf a route is doing or finding performance issues. No static analysis BS, just captures what actually runs.
https://github.com/TonyGeez/laravel-route-tracer
🤠
https://redd.it/1oxs75m
@r_php
GitHub
GitHub - TonyGeez/laravel-route-tracer
Contribute to TonyGeez/laravel-route-tracer development by creating an account on GitHub.
Refactoring Legacy: Part 1 - DTO's & Value Objects
https://clegginabox.co.uk/refactoring-legacy-part-1-dtos-value-objects/
https://redd.it/1oy0anv
@r_php
https://clegginabox.co.uk/refactoring-legacy-part-1-dtos-value-objects/
https://redd.it/1oy0anv
@r_php
Clegginabox
Refactoring Legacy: Part 1 - DTO's & Value Objects
Ever opened a codebase where a single JSON payload could arrive in 17 different shapes depending on the phase of the moon?
Over the last few years my contracts have involved working with legacy code in one way or another. Outdated software, missing documentation…
Over the last few years my contracts have involved working with legacy code in one way or another. Outdated software, missing documentation…
Run only affected tests?
Hey,
I want to run only affected tests - to cut down a bit on CI wastage and improve pipeline time.
Other tools I've worked with have this (e.g. NX) - I've gone through the docs and can't find anything on this.
Have I missed something and is there a command for it? Or have people brewed their own solutions/packages for this?
Thanks!
https://redd.it/1oybjpo
@r_php
Hey,
I want to run only affected tests - to cut down a bit on CI wastage and improve pipeline time.
Other tools I've worked with have this (e.g. NX) - I've gone through the docs and can't find anything on this.
Have I missed something and is there a command for it? Or have people brewed their own solutions/packages for this?
Thanks!
https://redd.it/1oybjpo
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
Static Methods Vs. Lazy Objects | PHP
Why should I use the lazy objects instead of static methods? I don't understand the difference use case of them.
https://redd.it/1oyfzzc
@r_php
Why should I use the lazy objects instead of static methods? I don't understand the difference use case of them.
https://redd.it/1oyfzzc
@r_php
Reddit
From the PHP community on Reddit
Explore this post and more from the PHP community
A Week of Symfony #985 (November 10–16, 2025)
https://symfony.com/blog/a-week-of-symfony-985-november-10-16-2025?utm_medium=feed&utm_source=Symfony%20Blog%20Feed
https://redd.it/1oyhteq
@r_php
https://symfony.com/blog/a-week-of-symfony-985-november-10-16-2025?utm_medium=feed&utm_source=Symfony%20Blog%20Feed
https://redd.it/1oyhteq
@r_php
Symfony
A Week of Symfony #985 (November 10–16, 2025) (Symfony Blog)
This week, Symfony released maintenance versions 5.4.50, 6.4.29, and 7.3.7 to address a potential security vulnerability. Meanwhile, we continued polishing the upcoming Symfony 7.4 and 8.0 releases an…
Should I opensource my DI container?
I've been using a custom dependency injection container in a couple of my php websites recently it's ~35 lines and still has all the features I need. It's explicit (so no autowiring) and has an emphasis on developer experience despite being so small, it has helper methods for factories, singletons, and lazy singletons. I've found it ideal for no/micro framework projects, cli noscripts, and possibly for use in laravel packages. What do you think? Is this something worth sharing?
https://redd.it/1oyj0u1
@r_php
I've been using a custom dependency injection container in a couple of my php websites recently it's ~35 lines and still has all the features I need. It's explicit (so no autowiring) and has an emphasis on developer experience despite being so small, it has helper methods for factories, singletons, and lazy singletons. I've found it ideal for no/micro framework projects, cli noscripts, and possibly for use in laravel packages. What do you think? Is this something worth sharing?
https://redd.it/1oyj0u1
@r_php
Reddit
From the PHP community on Reddit
Explore this post and more from the PHP community
Weekly /r/Laravel Help Thread
Ask your Laravel help questions here. To improve your chances of getting an answer from the community, here are some tips:
What steps have you taken so far?
What have you tried from the documentation?
Did you provide any error messages you are getting?
Are you able to provide instructions to replicate the issue?
Did you provide a code example?
Please don't post a screenshot of your code. Use the code block in the Reddit text editor and ensure it's formatted correctly.
For more immediate support, you can ask in the official Laravel Discord.
Thanks and welcome to the r/Laravel community!
https://redd.it/1oysfch
@r_php
Ask your Laravel help questions here. To improve your chances of getting an answer from the community, here are some tips:
What steps have you taken so far?
What have you tried from the documentation?
Did you provide any error messages you are getting?
Are you able to provide instructions to replicate the issue?
Did you provide a code example?
Please don't post a screenshot of your code. Use the code block in the Reddit text editor and ensure it's formatted correctly.
For more immediate support, you can ask in the official Laravel Discord.
Thanks and welcome to the r/Laravel community!
https://redd.it/1oysfch
@r_php
Laravel
Installation - Laravel 12.x - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
EHTML — Extended HTML for Real Apps. Sharing it in case it helps someone.
Hi everyone! I’ve been working on a project called EHTML, an HTML-first approach to building dynamic pages using mostly HTML. It lets you handle things like templating, loops, conditions, data loading, reusable components, and nested forms — all without a build step or heavy JavaScript setup.
I originally built it to simplify my own workflow for small apps and prototypes, but I figured others who prefer lightweight or no-build approaches might find it useful too. It runs entirely in the browser using native ES modules and custom elements, so there’s no bundler or complex tooling involved.
If you enjoy working close to the browser or like experimenting with minimalistic web development, you might find it interesting. Just sharing in case it helps someone or sparks ideas. Cheers!
Link: https://e-html.org/
https://redd.it/1oyv9xw
@r_php
Hi everyone! I’ve been working on a project called EHTML, an HTML-first approach to building dynamic pages using mostly HTML. It lets you handle things like templating, loops, conditions, data loading, reusable components, and nested forms — all without a build step or heavy JavaScript setup.
I originally built it to simplify my own workflow for small apps and prototypes, but I figured others who prefer lightweight or no-build approaches might find it useful too. It runs entirely in the browser using native ES modules and custom elements, so there’s no bundler or complex tooling involved.
If you enjoy working close to the browser or like experimenting with minimalistic web development, you might find it interesting. Just sharing in case it helps someone or sparks ideas. Cheers!
Link: https://e-html.org/
https://redd.it/1oyv9xw
@r_php
e-html.org
EHTML
EHTML (or Extended HTML) can be described as a set of custom elements that you can place on an HTML page for different purposes and use cases. The goal of this library is to provide a convenient way to eliminate JavaScript code on the client side as much…
Show the progress of your background jobs in your UI and support cancelling running jobs safely
https://redd.it/1oyynco
@r_php
https://redd.it/1oyynco
@r_php
Mocking static methods and built-in functions in PHP
https://www.tqdev.com/2025-mocking-static-methods-built-in-functions-php/
https://redd.it/1oz1ay0
@r_php
https://www.tqdev.com/2025-mocking-static-methods-built-in-functions-php/
https://redd.it/1oz1ay0
@r_php
TQdev
Mocking static methods and built-in functions in PHP
Testing code that relies on static methods or built-in functions can be challenging in PHP. Traditionally, you’d have to refactor your code to inject dependencies or wrap functions in testable interfaces. To allow you to write clean, maintainable tests without…
Weekly Ask Anything Thread
Feel free to ask any questions you think may not warrant a post. Asking for help here is also fine.
https://redd.it/1oz6q1c
@r_php
Feel free to ask any questions you think may not warrant a post. Asking for help here is also fine.
https://redd.it/1oz6q1c
@r_php
Reddit
From the symfony community on Reddit
Explore this post and more from the symfony community
Weekly help thread
Hey there!
This subreddit isn't meant for help threads, though there's one exception to the rule: in this thread you can ask anything you want PHP related, someone will probably be able to help you out!
https://redd.it/1oz9n6n
@r_php
Hey there!
This subreddit isn't meant for help threads, though there's one exception to the rule: in this thread you can ask anything you want PHP related, someone will probably be able to help you out!
https://redd.it/1oz9n6n
@r_php
Reddit
From the PHP community on Reddit
Explore this post and more from the PHP community
PHP 8.5 will be released on Thursday. Here's what's new
https://stitcher.io/blog/new-in-php-85
https://redd.it/1oza79j
@r_php
https://stitcher.io/blog/new-in-php-85
https://redd.it/1oza79j
@r_php
stitcher.io
A blog about modern PHP, the web, and programming in general. Follow my newsletter and YouTube channel as well.