eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

206
active users

#xdebug

0 posts0 participants0 posts today
michabbb<p>📊 Seamless integration with existing <a href="https://social.vivaldi.net/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> debugging workflows and popular <a href="https://social.vivaldi.net/tags/IDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>IDE</span></a> environments like <a href="https://social.vivaldi.net/tags/PhpStorm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PhpStorm</span></a> and <a href="https://social.vivaldi.net/tags/VSCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>VSCode</span></a>. Works with all standard step debugging protocols</p><p>🛡️ Reduces cognitive load during debugging by eliminating unnecessary code traversal. Developers can maintain focus on actual business logic rather than framework internals</p><p>🖥️ Check out the demo to see this game-changing feature in action and start optimizing your debugging workflow today</p>
michabbb<p>🚀 Coming to <a href="https://social.vivaldi.net/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> 3.5: "Skipping Elements While Debugging" feature! Skip entire directories or specific files while stepping through your <a href="https://social.vivaldi.net/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> code</p><p>🎯 Native path mapping allows you to mark directories or files as "skip" in the debugger. When you "step in," <a href="https://social.vivaldi.net/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> jumps straight into your own code, bypassing composer autoloaders and vendor directories</p><p>🧵 👇</p>
Derick Rethans<p>📼 I've made a new video, demoing a new feature coming up in Xdebug 3.5: Skipping lines, files, and directories while debugging: <a href="https://youtu.be/hYmCjrBwNNg" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">youtu.be/hYmCjrBwNNg</span><span class="invisible"></span></a></p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a> <a href="https://phpc.social/tags/debugging" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>debugging</span></a></p>
Dan Leech<p>Released a new version of (x)debug-tui featuring:</p><p>- Expression evaluation<br>- Showing previosly resolved inline values</p><p>and bug fixes: <a href="https://github.com/dantleech/debug-tui/releases/tag/0.2.0" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/dantleech/debug-tui</span><span class="invisible">/releases/tag/0.2.0</span></a></p><p><a href="https://fosstodon.org/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://fosstodon.org/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a></p>
Derick Rethans' Blog<b>Xdebug Update: August 2025</b><br><a href="https://derickrethans.nl/xdebug-update-august-2025.html" rel="nofollow noopener" target="_blank">Original Post</a><br><br><p>In this monthly update I explain what happened with Xdebug development.</p><p><a href="https://github.com/sponsors/derickr/" rel="nofollow noopener" target="_blank">GitHub</a> and <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">Pro/Business supporters</a> will get it earlier, around the first of each month.</p><p>In the last month, I spend around 27 hours on Xdebug, with 29 hours funded.</p><p><strong>Xdebug 3.4</strong></p><p>I spend a fair amount of time trying to triage <a href="https://bugs.xdebug.org/2359" rel="nofollow noopener" target="_blank">bug #2359</a> where Xdebug is interfering with Lazy Objects, which were introduced in PHP 8.4. However, there is no small reproducible case, and I have not managed to reproduce this myself at all.</p><p>However, I did manage to get to the bottom of <a href="https://bugs.xdebug.org/2328" rel="nofollow noopener" target="_blank">bug #2328</a>. This ended up being reference counting in PHP and resources (such as open file pointers) not being quite compatible. Instead of holding on to these resources when I keep the stack traces when an Exception occurs, I now instead ignore these.</p><p>These resource types are <a href="https://github.com/php/php-tasks/issues/6" rel="nofollow noopener" target="_blank">being phased out in PHP</a>, as they are the source of many other issues as well. But, file and stream resources have not been ported yet.</p><p>I also fixed a <a href="https://bugs.xdebug.org/2360" rel="nofollow noopener" target="_blank">bug</a> where sometimes internal PHP objects (such as <code>DateTimeInterval</code>) would cause a crash when debugging.</p><p>I will make a release in early September to get these fixes out.</p><p><strong>PHP 8.5</strong></p><p>Most of the time this month I spent on making Xdebug PHP 8.5 ready.</p><p>Last month I wrote about a <a href="https://github.com/php/php-src/pull/19377" rel="nofollow noopener" target="_blank">patch for PHP</a> that I created to introduce intermediate steps between pipe stages. With this, <a href="https://news-web.php.net/php.internals/128473" rel="nofollow noopener" target="_blank">I discovered a parser issue with PHP's implementation of pipes</a>, and especially when closures were used. Due to the precedence order, something went awry.</p><p>This has now been <a href="https://github.com/php/php-src/pull/19533" rel="nofollow noopener" target="_blank">addressed in PHP</a>, and my patch to introduce intermediate steps has also been merged after adjusting it slightly. I have also merged the Xdebug side of this feature into to the master branch.</p><p>The rest of the PHP 8.5 work was mostly due to Opcache now always being enabled. This caused some churn in my test cases and CI workflows, where I would load <code>opcache.so</code> conditionally. With PHP 8.5 this library no longer exists as Opcache is now built-in.</p><p><strong>Native Path Mapping</strong></p><p>I continued investigating how to implement "skip" for native path mapping, and am planning to get this implemented in early September. It is a fair amount of work, as I need to adjust my data structures and parser rules.</p><p><strong>Xdebug Videos</strong></p><p>I have created no new videos in the last months.</p><p>All Xdebug videos can be watched on my <a href="https://www.youtube.com/playlist?list=PLg9Kjjye-m1g_eXpdaifUqLqALLqZqKd4" rel="nofollow noopener" target="_blank">channel</a>.</p><p>If you have any suggestions, feel free to reach out to <a href="https://phpc.social/@derickr" rel="nofollow noopener" target="_blank">me on Mastodon</a> or via <a href="http://derickrethans/who.html" rel="nofollow noopener" target="_blank">email</a>.</p><p><strong>Business Supporter Scheme and Funding</strong></p><p>On GitHub sponsors, I am currently 42% towards my $2,500 per month goal, which is set to allow continued of Xdebug.</p><p>If you are leading a team or company, then it is also possible to support Xdebug through <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">a subscription</a>.</p><p>In the last month, no new business supporters signed up.</p><p>Besides business support, I also maintain a <a href="https://www.patreon.com/derickr" rel="nofollow noopener" target="_blank">Patreon</a> page, a profile on <a href="https://github.com/sponsors/derickr" rel="nofollow noopener" target="_blank">GitHub sponsors</a>, as well as an <a href="https://opencollective.com/xdebug" rel="nofollow noopener" target="_blank">OpenCollective</a> organisation.</p><p>If you want to contribute to specific projects, you can find those on the <a href="https://xdebug.org/funding" rel="nofollow noopener" target="_blank">Projects</a> page.</p><p><strong>Xdebug Cloud</strong></p><p><a href="https://xdebug.cloud" rel="nofollow noopener" target="_blank">Xdebug Cloud</a> is the <em>Proxy As A Service</em> platform to allow for debugging in more scenarios, where it is hard, or impossible, to have Xdebug make a connection to the IDE. It is continuing to operate as Beta release.</p><p>Packages start at £49/month, and I have recently introduced a package for larger companies. This has a larger initial set of tokens, and discounted extra tokens.</p><p>If you want to be kept up to date with Xdebug Cloud, please sign up to the <a href="https://xdebug.cloud/newsletter" rel="nofollow noopener" target="_blank">mailing list</a>, which I will use to send out an update not more than once a month.</p>
Derick Rethans<p>Once <a href="https://github.com/php/php-src/pull/19670" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/php/php-src/pull/19</span><span class="invisible">670</span></a> gets merged (it is now merged), and the accompanying patch for Xdebug, you will be able to see the intermediate values passing through PHP 8.5's pipes!</p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/php85" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php85</span></a> <a href="https://phpc.social/tags/pipes" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pipes</span></a> <a href="https://phpc.social/tags/debugging" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>debugging</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a></p>
Derick Rethans' Blog<b>Xdebug Update: July 2025</b><br><a href="https://derickrethans.nl/xdebug-update-july-2025.html" rel="nofollow noopener" target="_blank">Original Post</a><br><br><p>In this monthly update I explain what happened with Xdebug development.</p><p><a href="https://github.com/sponsors/derickr/" rel="nofollow noopener" target="_blank">GitHub</a> and <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">Pro/Business supporters</a> will get it earlier, around the first of each month.</p><p>In the last month, I spend around 14 hours on Xdebug, with 23 hours funded. I went on a holiday!</p><p><strong>Xdebug 3.4</strong></p><p>In the first half of the month, I finished fixing the complicated issue with fibers and path coverage that I wrote about last month. This resulted in the release of <a href="https://xdebug.org/announcements/2025-07-14" rel="nofollow noopener" target="_blank">Xdebug 3.4.5</a>. This release also addresses an issue where Xdebug called the code backing a property, resulting in the hooked property's value to change.</p><p><strong>PHP 8.5</strong></p><p>In the remained of the month, I looked at how best to support PHP 8.5's new pipes. These allow you to chain method calls together. Due to this, there is no intermediate value that you can look at in the debugger.</p><p>I have created a <a href="https://github.com/php/php-src/pull/19377" rel="nofollow noopener" target="_blank">patch for PHP</a> which introduces intermediate steps which <a href="https://github.com/derickr/xdebug/commit/b6cb3f3e760c886214bfaf9ec7da3844b3c591be" rel="nofollow noopener" target="_blank">Xdebug can use with a patch</a> to then visualise the values being send to the next pipe stage.</p><p>Right now, this only works for non-closure-wrapped pipeline stages, and more work is necessary to make this work all nicely. There is some time before PHP 8.5 comes out though.</p><p><strong>Native Path Mapping</strong></p><p>I have started to implement that lines, files, and directories can be mapped as "skip" — i.e., consider there to be just no code at this location, and hence don't initiate a breakpoint then. I ran into trouble here, as the data-structures that I keep to remember mappings can not handle this. It was only possible to skip single lines with this, but not files (or directories) — which is what I was testing it with. Stay tuned!</p><p><strong>Xdebug Videos</strong></p><p>I have created no new videos in the last months, but I did add some to the Xdebug documentation as <a href="https://xdebug.org/docs/trace#related_content" rel="nofollow noopener" target="_blank">related content</a> for function tracing, to demo flamegraphs.</p><p>All Xdebug videos can be watched on my <a href="https://www.youtube.com/playlist?list=PLg9Kjjye-m1g_eXpdaifUqLqALLqZqKd4" rel="nofollow noopener" target="_blank">channel</a>.</p><p>If you have any suggestions, feel free to reach out to <a href="https://phpc.social/@derickr" rel="nofollow noopener" target="_blank">me on Mastodon</a> or via <a href="http://derickrethans/who.html" rel="nofollow noopener" target="_blank">email</a>.</p><p><strong>Business Supporter Scheme and Funding</strong></p><p>On GitHub sponsors, I am currently 42% towards my $2,500 per month goal, which is set to allow continued of Xdebug.</p><p>If you are leading a team or company, then it is also possible to support Xdebug through <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">a subscription</a>.</p><p>In the last month, no new business supporters signed up.</p><p>Besides business support, I also maintain a <a href="https://www.patreon.com/derickr" rel="nofollow noopener" target="_blank">Patreon</a> page, a profile on <a href="https://github.com/sponsors/derickr" rel="nofollow noopener" target="_blank">GitHub sponsors</a>, as well as an <a href="https://opencollective.com/xdebug" rel="nofollow noopener" target="_blank">OpenCollective</a> organisation.</p><p>If you want to contribute to specific projects, you can find those on the <a href="https://xdebug.org/funding" rel="nofollow noopener" target="_blank">Projects</a> page.</p><p><strong>Xdebug Cloud</strong></p><p><a href="https://xdebug.cloud" rel="nofollow noopener" target="_blank">Xdebug Cloud</a> is the <em>Proxy As A Service</em> platform to allow for debugging in more scenarios, where it is hard, or impossible, to have Xdebug make a connection to the IDE. It is continuing to operate as Beta release.</p><p>Packages start at £49/month, and I have recently introduced a package for larger companies. This has a larger initial set of tokens, and discounted extra tokens.</p><p>If you want to be kept up to date with Xdebug Cloud, please sign up to the <a href="https://xdebug.cloud/newsletter" rel="nofollow noopener" target="_blank">mailing list</a>, which I will use to send out an update not more than once a month.</p>
github.com/ghostwriter<p>If you and your team find <a href="https://phpc.social/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> useful, please consider supporting the project.</p><p><a href="https://xdebug.org/support" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">xdebug.org/support</span><span class="invisible"></span></a></p>
Xdebug<p>🥳 Xdebug 3.4.5 Released!</p><p>🐛 This is a bug fix release.</p><p>🧬 One fix addresses crashes when using Xdebug's debugger with (nested) Fibers.</p><p>↪️ A second bug addresses an issue where, while debugging, Xdebug sometimes calls get property hooks which can then update and change the object's state.</p><p>📄 The full list of changes can be found on the updates page: <a href="https://xdebug.org/announcements/2025-07-14" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">xdebug.org/announcements/2025-</span><span class="invisible">07-14</span></a></p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a> <a href="https://phpc.social/tags/debugging" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>debugging</span></a></p>
github.com/ghostwriter<p>Code coverage with Fibers in <a href="https://phpc.social/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> is looking solid!</p><p>Patch #1025 works flawlessly in my codebase. </p><p>Thank you, <span class="h-card" translate="no"><a href="https://phpc.social/@derickr" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>derickr</span></a></span> </p><p>No rush on the merge, I appreciate your careful approach and attention to detail.</p><p>:elephpant_black: <a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a></p>
DrupalCon Europe<p>We are introducing Derick Rethans as a featured speaker of the CODING &amp; SITE BUILDING track. Join his session “Better Debugging with Xdebug” on 16 October.</p><p>Come level up your debugging skills at DrupalCon Vienna! <br>👉<a href="https://events.drupal.org/vienna2025/coding-site-building" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">events.drupal.org/vienna2025/c</span><span class="invisible">oding-site-building</span></a> </p><p><a href="https://mastodon.social/tags/DrupalConVienna" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DrupalConVienna</span></a> <a href="https://mastodon.social/tags/DrupalConEur" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DrupalConEur</span></a> <a href="https://mastodon.social/tags/Coding" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Coding</span></a> <a href="https://mastodon.social/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a></p><p><span class="h-card" translate="no"><a href="https://phpc.social/@derickr" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>derickr</span></a></span></p>
Derick Rethans' Blog<b>Xdebug Update: June 2025</b><br><a href="https://derickrethans.nl/xdebug-update-june-2025.html" rel="nofollow noopener" target="_blank">Original Post</a><br><br><p>In this monthly update I explain what happened with Xdebug development.</p><p><a href="https://github.com/sponsors/derickr/" rel="nofollow noopener" target="_blank">GitHub</a> and <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">Pro/Business supporters</a> will get it earlier, around the first of each month.</p><p>In the last month, I spend around 22 hours on Xdebug, with 21 hours funded.</p><p><strong>Xdebug 3.4</strong></p><p>I spend most of the time this month working on bug fixes, resulting in the mid-month release of Xdebug 3.4.4. Most of the fixes revolved around exceptions and generating stack traces for them.</p><p>While fixing these, I also stumbled upon another <a href="https://bugs.xdebug.org/2354" rel="nofollow noopener" target="_blank">bug</a>. The issue here was that Xdebug wouldn't include the argument name for <code>__invoke()</code> call frames in its output. This only matters to PHP 8.1 and before though.</p><p>The rest of the month I spend on trying to resolve the code-coverage-with-fibers issue that I wrote about last month.</p><p>I now have a <a href="https://github.com/xdebug/xdebug/pull/1025" rel="nofollow noopener" target="_blank">Pull Request</a> that addresses the original bug and crash, but it does not yet fix all the problems that I discovered while running the test suite of <a href="https://github.com/reactphp/async" rel="nofollow noopener" target="_blank">reactphp/async</a> with code coverage enabled. Therefore I did not manage to make another release this month addressing this issue. I hope to finalise this by the end of July.</p><p><strong>Native Path Mapping</strong></p><p>I have only played around with this during some demos in presentations showing this feature, but I did not make any progress with the feature itself.</p><p>It also seems that the PhpStorm team has looked at my <a href="https://youtrack.jetbrains.com/issue/WI-81344/Cant-Set-Breakpoints-in-Template-Files-Even-Though-I-Added-The-File-Name-Pattern-to-PHP" rel="nofollow noopener" target="_blank">bug report</a> either.</p><p><strong>Xdebug Videos</strong></p><p>I have created one new video in the last months:</p><ul><li><p><a href="https://youtu.be/8tHKq_5-cXo" rel="nofollow noopener" target="_blank">Xdebug 3.5: Native Path Mapping Teaser</a></p></li></ul><p>All Xdebug videos can be watched on my <a href="https://www.youtube.com/playlist?list=PLg9Kjjye-m1g_eXpdaifUqLqALLqZqKd4" rel="nofollow noopener" target="_blank">channel</a>.</p><p>If you have any suggestions, feel free to reach out to <a href="https://phpc.social/@derickr" rel="nofollow noopener" target="_blank">me on Mastodon</a> or via <a href="http://derickrethans/who.html" rel="nofollow noopener" target="_blank">email</a>.</p><p><strong>Business Supporter Scheme and Funding</strong></p><p>On GitHub sponsors, I am currently 42% towards my $2,500 per month goal, which is set to allow continued of Xdebug.</p><p>If you are leading a team or company, then it is also possible to support Xdebug through <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">a subscription</a>.</p><p>In the last month, no new business supporters signed up.</p><p>Besides business support, I also maintain a <a href="https://www.patreon.com/derickr" rel="nofollow noopener" target="_blank">Patreon</a> page, a profile on <a href="https://github.com/sponsors/derickr" rel="nofollow noopener" target="_blank">GitHub sponsors</a>, as well as an <a href="https://opencollective.com/xdebug" rel="nofollow noopener" target="_blank">OpenCollective</a> organisation.</p><p>If you want to contribute to specific projects, you can find those on the <a href="https://xdebug.org/funding" rel="nofollow noopener" target="_blank">Projects</a> page.</p><p><strong>Xdebug Cloud</strong></p><p><a href="https://xdebug.cloud" rel="nofollow noopener" target="_blank">Xdebug Cloud</a> is the <em>Proxy As A Service</em> platform to allow for debugging in more scenarios, where it is hard, or impossible, to have Xdebug make a connection to the IDE. It is continuing to operate as Beta release.</p><p>Packages start at £49/month, and I have recently introduced a package for larger companies. This has a larger initial set of tokens, and discounted extra tokens.</p><p>If you want to be kept up to date with Xdebug Cloud, please sign up to the <a href="https://xdebug.cloud/newsletter" rel="nofollow noopener" target="_blank">mailing list</a>, which I will use to send out an update not more than once a month.</p>
Derick Rethans' Blog<b>Xdebug Update: June 2025</b><br><a href="https://derickrethans.nl/xdebug-update-june-2025.html" rel="nofollow noopener" target="_blank">Original Post</a><br><br><p>In this monthly update I explain what happened with Xdebug development.</p><p><a href="https://github.com/sponsors/derickr/" rel="nofollow noopener" target="_blank">GitHub</a> and <a href="https://xdebug.org/support" rel="nofollow noopener" target="_blank">Pro/Business supporters</a> will get it earlier, around the first of each month.</p><p>In the last month, I spend around 22 hours on Xdebug, with 21 hours funded.</p><p><strong>Xdebug 3.4</strong></p><p><strong>Native Path Mapping</strong></p><p><strong>Xdebug Videos</strong></p><p><strong>Business Supporter Scheme and Funding</strong></p><p><strong>Xdebug Cloud</strong></p>
ignace nyamagana butera<p><a href="https://github.com/bakame-php/aide-profiler" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/bakame-php/aide-pro</span><span class="invisible">filer</span></a> is almost stable if you could give a spin and report issues or improvements area it would be nice. It is a nice non brainer straightforward profiler in PHP which seats between <a href="https://phpc.social/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> and you double call to microtime 😂 Give it a shot. <a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> <a href="https://phpc.social/tags/profiler" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>profiler</span></a> <a href="https://phpc.social/tags/OSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OSS</span></a></p>
Dan Leech<p>Released 0.1.0 of (x)debug-tui:</p><p><a href="https://github.com/dantleech/debug-tui" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">github.com/dantleech/debug-tui</span><span class="invisible"></span></a></p><p><a href="https://fosstodon.org/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://fosstodon.org/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a></p>
👻 Boo Ramsey 🎃 🧛‍♂️ 🧟‍♂️<p>I haven’t had many problems with <a href="https://phpc.social/tags/PhpStorm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PhpStorm</span></a>’s <a href="https://phpc.social/tags/Xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xdebug</span></a> integration in a long time. Most of the time, it Just Works, but today, it decided it doesn’t like me, and so now, my afternoon has been spent trying to get it to work again.</p><p>This is the error I see in the step debugging console. The only thing I know has changed is PhpStorm (it upgraded).</p><p>```<br>Cannot find file '/path/to/ramsey/uuid/Standard input code' locally.<br>```</p><p><a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a></p>
~RiWe :fediverse:<p>I have this wired output when I run <a href="https://det.social/tags/PHPUNIT" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHPUNIT</span></a> and <a href="https://det.social/tags/XDEBUG" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>XDEBUG</span></a> :</p><p>$ vendor/bin/phpunit --coverage-html coverage --coverage-text<br>PHPUnit 9.6.19 by Sebastian Bergmann and contributors.<br>Runtime: PHP 8.2.28 with Xdebug 3.4.4<br>Configuration: /.../phpunit.xml<br>double free or corruption (fasttop)<br>/bin/bash: line 158: 196 Aborted (core dumped) vendor/bin/phpunit --coverage-html coverage --coverage-text</p><p>Has someone seen this before? How to solve it? <a href="https://det.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a></p>
Xdebug<p>🥳 Xdebug 3.4.4 Released!</p><p>🐞 This is a bug fix release that fixes a few crashes with regard to exceptions. This was a regression from Xdebug 3.4.3.</p><p>📄 The full list of changes can be found on the updates page: <a href="https://xdebug.org/announcements/2026-06-12" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">xdebug.org/announcements/2026-</span><span class="invisible">06-12</span></a></p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a> <a href="https://phpc.social/tags/debugging" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>debugging</span></a> <a href="https://phpc.social/tags/fix" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>fix</span></a> <a href="https://phpc.social/tags/release" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>release</span></a></p>
Derick Rethans<p>The slides for my "Better Debugging with <span class="h-card" translate="no"><a href="https://phpc.social/@Xdebug" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>Xdebug</span></a></span>" at <span class="h-card" translate="no"><a href="https://phparch.social/@phptek" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>phptek</span></a></span> are now online at <a href="https://derickrethans.nl/talks/xdebug-tek25" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">derickrethans.nl/talks/xdebug-</span><span class="invisible">tek25</span></a></p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/phptek" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>phptek</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a></p>
Derick Rethans<p>📹 I have created a new video!</p><p>:xdebug: In this video, I am showing off preliminary work on native path mapping.</p><p>📜 This allows you to directly debug template files.</p><p>🏃 It will also work for situations where the PHP files that you edit, and which cat "compiled" into other PHP files that actually get executed.</p><p>🔗 <a href="https://www.youtube.com/watch?v=8tHKq_5-cXo" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">youtube.com/watch?v=8tHKq_5-cX</span><span class="invisible">o</span></a> (subtitles available)</p><p>ℹ️ For more information, and the specs, see the project page: <a href="https://xdebug.org/funding/001-native-path-mapping" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">xdebug.org/funding/001-native-</span><span class="invisible">path-mapping</span></a></p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/xdebug" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xdebug</span></a> <a href="https://phpc.social/tags/NeosFlow" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NeosFlow</span></a> <a href="https://phpc.social/tags/NewFeature" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NewFeature</span></a></p>