<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title><![CDATA[The PHP Foundation]]></title>
    <link href="https://deploy-pr-284--thephpfoundation.netlify.app/atom.xml" rel="self"/>
    <link href="https://deploy-pr-284--thephpfoundation.netlify.app/"/>
    <updated>2026-06-04T23:29:43+00:00</updated>
    <id>https://deploy-pr-284--thephpfoundation.netlify.app/</id>
        <generator uri="http://sculpin.io/">Sculpin</generator>
            <entry>
            <title type="html"><![CDATA[PHP Through a Screen Reader: Small Syntax Choices That Matter]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/06/05/php-through-a-screen-reader-small-syntax-choices-that-matter/"/>
            <updated>2026-06-05T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/06/05/php-through-a-screen-reader-small-syntax-choices-that-matter/</id>
            <content type="html"><![CDATA[<p>I'm a backend developer, and PHP is my main language; it is also my favorite one. I've been developing in PHP since 2008, and today, when I start a web project, I choose PHP proudly, because I know what works well for me.</p>

<p>There is one particularity in my developer experience: I'm totally blind from birth. So I use a <a href="https://www.visionaustralia.org/technology-products/resources/beginner-guides/introduction-to-screen-readers">screen reader</a>, a tool that sends information to speech and/or a <a href="https://www.sightadvicefaq.org.uk/technology/Reading-and-writing/Braille-Display">Braille display</a>.</p>

<p>Of course, blind programmers are not a single organism with a shared configuration file. We use different tools and tolerance levels for punctuation spoken at 500 miles per hour. Still, PHP has many qualities that make it comfortable to read and write non-visually.</p>

<h2 id="syntax-as-landmarks">Syntax as landmarks</h2>

<p>Accessibility in programming is often discussed through tools, and tools matter a lot; but the language itself matters too, because syntax is something we hear, search, remember, and sometimes read on a Braille display.</p>

<p>As we all know, every variable in PHP starts with <code>$</code>, and although this is often treated as one of those old PHP quirks people love to mention, for a screen reader user it is rather a practical landmark. I do not need to infer whether <code>user</code> is a variable, a constant, a class name, a function, or something else, because <code>$user</code> announces itself immediately. Without that marker, something like <code>User user = new User()</code> becomes, in speech, “user user equals new user left parenthesis right parenthesis”, or in my birdspeak, “user user equal new user left right”; this is understandable, yes, but it still requires a tiny effort to decrypt. A thousand tiny little efforts a day, actually.</p>

<p>Functions also have a clear marker: the <code>function</code> keyword, and arrow functions have <code>fn</code>. These words are searchable, predictable anchors in a file, especially because not every blind developer lives inside a large visual IDE. Many of us use code or even text editors, command-line tools and search where they work well, so if I want to jump through functions in a file, the word <code>function</code> is my friend.</p>

<p>PHP’s modern object-oriented syntax also has a pleasant rhythm:</p>

<pre><code class="php">public function getDisplayName(): string
</code></pre>

<p>Maybe because I come from a linguistics background, it matters to me that this is a good phrase to hear and read: it has full words, it has structure — visibility, <code>function</code>, name, parameter list, colon, return type. I do not want to start a language war — well, not today — but when code is read linearly through speech or Braille, explicit syntax can be more comfortable than compact syntax.</p>

<p>The same is true for braces and semicolons: a closing brace tells me that a block has ended, a semicolon tells me that a statement has ended, and both save me from reconstructing structure from indentation alone. Indentation is useful, of course, but braces act as milestones: block ended, period, go further.</p>

<p>Naming conventions matter too. In PHP, we commonly see <code>camelCase</code>, <code>PascalCase</code>, and <code>UPPER_SNAKE_CASE</code>. For me, <code>camelCase</code> is convenient because screen readers often separate the words naturally, while <code>UPPER_SNAKE_CASE</code> constants are noticeable, especially in Braille. The ordinary snake case is harder: if punctuation is enabled, — and it is while writing code&#33; — <code>my_very_descriptive_variable_name</code> may become “my underscore very underscore descriptive underscore variable underscore name”. You can tune punctuation settings, and I have done it, but it still adds work.</p>

<p>PHP is not perfect; no language is. But accessibility is not only elegance: sometimes it is predictability, explicitness, and being able to search for <code>function</code>, hear a friendly <code>$</code>, distinguish a constant on a Braille display, and know that a block ended because there is a <code>}</code>.</p>

<h2 id="what-about-learning%3F">What about learning?</h2>

<p>The second part of the story is learning. The PHP language itself can be friendly to assistive technology, but programming education is much more uneven. Many tutorials today are video-first, visually dense, and full of phrases like “click here”, “as you can see”, or “now we get this result”. That is fine if the important information is also spoken or written, but it becomes a barrier when the tutorial depends on visual context that is never explained.</p>

<p>Here is a simple rule of thumb: close your eyes and try to understand what is happening in a course or conference talk. If you cannot, the blind part of your audience is immediately excluded. A blind learner cannot use “this button here” if “here” only means the instructor’s mouse pointer, cannot copy code from a screenshot, and cannot easily follow a refactoring if the teacher silently selects a block and says, “now we just fix it this way”.</p>

<p>And this is not only about blindness. Clear teaching helps everyone: beginners, people learning in a second language, people watching on a phone, and people returning to a tutorial six months later.</p>

<p>So here is my practical wish for people teaching PHP: provide the code as text, ideally in a Git repository. Say what file you are editing, say what function you are in, and do not rely only on “as you can see”. If something changes on screen, describe the change; if you show an error, read the important part of the error; if you use a diagram, briefly explain what it means. If you publish slides, make sure code examples are real text, and not just images, and consider publishing a transcript.</p>

<p>Good written material also matters. PHP has always had a strong culture of documentation and examples, and that is not just convenient; it is an accessibility feature.</p>

<h2 id="conclusion">Conclusion</h2>

<p>Accessibility is essential for users, but developers need accessibility too. For me, part of PHP’s approachability is that the code gives me landmarks: it speaks in a structure I can follow, lets me search, and marks important parts in ways that are not only visual.</p>

<p>These are small things, but programming is made of small things repeated many times, and when those small things reduce friction, they let more people build.</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[The PHP Foundation’s Elizabeth Barron to keynote JetBrains PHPverse 2026]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/28/phpverse-keynote/"/>
            <updated>2026-05-28T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/28/phpverse-keynote/</id>
            <content type="html"><![CDATA[<p>PHP has undergone a remarkable transformation in recent years, and The PHP Foundation has played a major role in contributing to the development and maintenance of the language. The upcoming <a href="https://blog.jetbrains.com/phpstorm/2026/04/join-us-for-phpverse-2026-on-june-9/?utm_source=thephp.foundation&amp;utm_medium=referral&amp;utm_campaign=phpverse2026">JetBrains PHPverse conference</a> is a great opportunity to reflect on what has been done to reinforce PHP's position as a robust, modern language for web development.</p>

<p>Elizabeth Barron, <a href="https://thephp.foundation/blog/2026/02/27/welcoming-elizabeth-barron-new-executive-director/">The PHP Foundation’s Executive Director</a>, is joining the lineup of JetBrains PHPverse 2026 speakers with a keynote talk “Getting to Know The PHP Foundation”. <a href="https://lp.jetbrains.com/phpverse-2026/?utm_source=thephp.foundation&amp;utm_medium=referral&amp;utm_campaign=phpverse2026">Tune in</a> on <strong>June 9</strong> to learn what The PHP Foundation actually does, which initiatives are planned for the rest of 2026, and how the community can help support the PHP ecosystem.</p>

<h3 id="about-jetbrains-phpverse">About JetBrains PHPverse</h3>

<p><a href="https://lp.jetbrains.com/phpverse-2026/?utm_source=thephp.foundation&amp;utm_medium=referral&amp;utm_campaign=phpverse2026">JetBrains PHPverse</a> is a free online conference and community event bringing together the big and vibrant PHP herd. It was first held in 2025, reaching out to more than 55,000 developers worldwide.</p>

<p>Besides The PHP Foundation’s keynote, expect a <a href="https://lp.jetbrains.com/phpverse-2026/?utm_source=thephp.foundation&amp;utm_medium=referral&amp;utm_campaign=phpverse2026#speakers">curated lineup</a> of talks from some of the most influential voices in the PHP ecosystem, covering the major PHP frameworks, tools, and shipping PHP code with AI:</p>

<ul>
<li>Fabien Potencier, Founder of Symfony</li>
<li>Jeffrey Way, Founder of Laracasts</li>
<li>Larry Garfield, Functional Programming Enthusiast</li>
<li>Jonathan Bossenger, Developer Advocate at Automattic</li>
<li>Nils Adermann, Co-Founder of Packagist</li>
<li>Ashley Hindle, Founder and CEO of Fuel</li>
</ul>

<p>The conversations and deep dives are hosted by <a href="https://x.com/enunomaduro">Nuno Maduro</a>, creator of Pest, Larastan, and Laravel Pint, and <a href="https://x.com/brendt_gd">Brent Roose</a>, Developer Advocate for PHP at <a href="https://www.jetbrains.com/?utm_source=thephp.foundation&amp;utm_medium=referral&amp;utm_campaign=phpverse2026">JetBrains</a>.</p>

<h3 id="join-the-conversation">Join the conversation</h3>

<p>For The PHP Foundation, JetBrains PHPverse is not just a talking stage, but a chance to engage in a conversation with thousands of engineers who use PHP every day.</p>

<p>We invite every member of the PHP community to join us for this day of learning and connection. Whether you’re interested in the latest RFCs, projects supported by the Foundation, or what’s next for tools you are using, there is something at PHPverse for everyone.</p>

<p><a href="https://lp.jetbrains.com/phpverse-2026/?utm_source=thephp.foundation&utm_medium=referral&utm_campaign=phpverse2026#register-for-phpverse-2026" class="button-link">Register for JetBrains PHPverse 2026</a></p>

<p>We also encourage you to join the <a href="https://discord.gg/uEUkSNhdd8">official Discord server</a> to ask questions and engage with the speakers and fellow developers.</p>

<p>Looking forward to seeing you on June 9!</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[The PHP Foundation Impact and Transparency Report 2025]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/27/impact-and-transparency-report-2025/"/>
            <updated>2026-05-27T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/27/impact-and-transparency-report-2025/</id>
            <content type="html"><![CDATA[<h2 id="executive-summary">Executive Summary</h2>

<p>PHP turned 30 in 2025. With The PHP Foundation's support, the PHP project marked the year by shipping PHP 8.5. The PHP Foundation also launched PIE 1.0, initiated a project to modernize PHP's stream layer, and authored roughly 42% of all commits to PHP's core. This work was supported by 536 sponsors and individual contributors, and it could not have happened without them.</p>

<p>At the end of 2025, The PHP Foundation consisted of 8 volunteer board members, an Executive Director sponsored by <a href="https://www.jetbrains.com/">JetBrains</a>, and 11 contracted developers who worked part- and full-time to strengthen and improve the core PHP language through bug and security fixes, feature development, and contributing to the RFC process through discussion and development of new RFCs.</p>

<p>The total contributions received from sponsors and individual donors was $730,534, which enabled The PHP Foundation to advance its mission in a meaningful way.</p>

<h3 id="about-the-php-foundation">About the PHP Foundation</h3>

<p>The PHP Foundation's main focus is to ensure the sustainability and long term viability of the PHP language. Our priorities continue to be:</p>

<ul>
<li>Improving the language for users</li>
<li>Providing high-quality maintenance</li>
<li>Improving the project to retain current contributors and integrate new ones</li>
<li>Promoting the public image of PHP</li>
</ul>

<p>It should be noted that The PHP Foundation does not control the decisions made by the PHP community regarding the language, nor does it assume any governance over the language itself. PHP has always been, and will continue to be a community-owned Open Source project.</p>

<h2 id="what-we-shipped-in-2025">What we shipped in 2025</h2>

<p>Leadership at The PHP Foundation coordinated several high-level initiatives, including:</p>

<ul>
<li>The completion of a <a href="https://thephp.foundation/blog/2025/04/10/php-core-security-audit-results/">Security Audit</a> by <a href="https://ostif.org/">Open Source Technology Improvement Fund (OSTIF)</a>, funded by the <a href="https://www.sovereign.tech/">Sovereign Tech Agency</a> through the Sovereign Tech Fund (STF), and sustained security advisory work across the team</li>
<li>The <a href="https://thephp.foundation/blog/2025/05/15/frankenphp/">addition of FrankenPHP</a> to the PHP GitHub organization, in collaboration with <a href="https://les-tilleuls.coop/en/">Les-Tilleuls.coop</a></li>
<li>The development of the <a href="https://thephp.foundation/blog/2025/09/05/php-mcp-sdk/">official PHP SDK for MCP</a>, in collaboration with the <a href="https://symfony.com/">Symfony</a> Team and <a href="https://www.anthropic.com/">Anthropic</a></li>
</ul>

<p>In addition, in 2025, eleven Foundation-funded contractors collectively logged thousands of hours advancing PHP's language, runtime, security posture, ecosystem tooling, and community reach.</p>

<p>Key achievements included:</p>

<ul>
<li>Successful delivery of PHP 8.5</li>
<li>Launch of PIE 1.0 and initiation of the formal PECL deprecation process</li>
<li>Launch of the STF Streams modernization project</li>
<li>PHP Foundation representation at the <a href="https://orcwg.org/">Open Regulatory Compliance Working Group</a> on the EU Cyber Resilience Act</li>
</ul>

<h2 id="the-php-foundation-staff">The PHP Foundation Staff</h2>

<p>Our 2025 team was stable and productive, and worked very well together. We ended 2025 by adding one more contractor to the team in H2: <a href="https://thephp.foundation/blog/2025/09/25/joe-watkins/">Joe Watkins</a>.</p>

<p>Therefore, as of January 1, 2026, 11 Foundation developers work on PHP:</p>

<ul>
<li>Arnaud Le Blanc <a href="https://github.com/arnaud-lb">@arnaud-lb</a></li>
<li>David Carlier <a href="https://github.com/devnexen">@devnexen</a></li>
<li>Derick Rethans <a href="https://github.com/derickr">@derickr</a></li>
<li>Gina P. Banyard <a href="https://github.com/Girgias">@Girgias</a></li>
<li>Ilija Tovilo <a href="https://github.com/iluuu1994">@iluuu1994</a></li>
<li>Jakub Zelenka <a href="https://github.com/bukka">@bukka</a></li>
<li>James Titcumb <a href="https://github.com/asgrim">@asgrim</a></li>
<li>Joe Watkins <a href="https://github.com/krakjoe">@krakjoe</a></li>
<li>Máté Kocsis <a href="https://github.com/kocsismate">@kocsismate</a></li>
<li>Saki Takamachi <a href="https://github.com/SakiTakamachi">@SakiTakamachi</a></li>
<li>Shivam Mathur <a href="https://github.com/shivammathur">@shivammathur</a></li>
</ul>

<h3 id="team-achievements">Team Achievements</h3>

<p><img src="/assets/post-images/2026/impact-report-2025/php_foundation_stats_2025.png" width="1052" alt="PHP Foundation 2025 contribution statistics infographic showing key metrics: Foundation developers contributed 2,929 commits and 662 merged PRs across 9 PHP repositories; 1,685 community PRs reviewed in php-src; Foundation developers authored 42% of commits, 32% of merged PRs, and 25% of bug-fix PRs in php-src; Foundation leads 90%+ of activity in php/pie, php/php-windows-builder, and php/web-downloads; 14 PIE releases shipped including version 1.0; team delivered 40+ international conference talks throughout 2025. The infographic presents these accomplishments in an organized, visually hierarchical layout highlighting The PHP Foundation team's productive year." class="mb-4 sm:mr-4"/></p>

<p>We acknowledge the limitations in providing any metrics; very rarely do metrics accurately represent the full scenario (for instance, a 1-line commit and a 100-line commit are counted equally in the overall number of commits). Additionally, some metrics are more difficult to capture than others. Therefore, we offer this set of obtainable metrics to collectively demonstrate the team's impact. To clarify the data points above:</p>

<ul>
<li>PRs merged = PRs that were authored by a contractor that were merged by anyone</li>
<li>Community PR Reviews = PRs from other people that were reviewed/commented on by contractors</li>
<li>% of Bug Fixes = the percent of all bug fix PRs that were authored by a contractor but merged by anyone in the community. PRs were considered “fixes” if they included the words “fix,” “resolve,” or “bug” in the title of the PR</li>
</ul>

<h4 id="language-%26-runtime">Language &amp; runtime</h4>

<ul>
<li><strong>URL/URI parsing RFC</strong> (Máté Kocsis) passed in May, representing PHP's most significant standard-library addition in years, including upstream contributions to the uriparser C library.</li>
<li><strong>Gina P. Banyard</strong> drove the entire PHP 8.5 deprecations and warnings RFC to php-src and authored 173 merged PRs (roughly 16% of all merged PRs to php-src in 2025).</li>
<li><strong>Arnaud Le Blanc's</strong> Tail Call VM technique merged in August, removing PHP's dependency on a single compiler for peak performance; he also co-developed Partial Function Applications v2 and Context Managers with Larry Garfield.</li>
<li><strong>Ilija Tovilo</strong> was the team's leading committer to php-src (565 commits) and advanced the Pattern Matching RFC alongside deep performance work on zend_op size and TMP|VAR consolidation.</li>
<li><strong>Saki Takamachi</strong> delivered BCMath optimizations and created xsse, a portable SIMD abstraction library already in use in php-src.</li>
<li><strong>Jakub Zelenka</strong> progressed with implementation of JsonSchema support for the JSON extension.</li>
</ul>

<h4 id="security">Security</h4>

<p>Jakub Zelenka led sustained multi-month investigations on multiple security advisories, which included the handling of PHP security releases. Jakub also represented the PHP Foundation in the Open Regulatory Compliance Working Group shaping EU Cyber Resilience Act compliance.  David Carlier delivered a steady stream of overflow, double-free, and memory leak fixes across GD, ZIP, intl, PDO_SQLite, sodium, and Fiber, upstreaming several directly to libgd. Shivam Mathur is responsible for security upgrades to Windows PHP builds addressing 50+ CVEs/security issues, and continues to support builds for 100+ extensions for Windows. Derick Rethans patched an XSS in php.net and ran an emergency CVE response for the rsync server.</p>

<h4 id="streams-modernization-sovereign-tech-fund">Streams modernization (Sovereign Tech Fund)</h4>

<p>The STF underwrote a 530-hour modernization of PHP's stream layer, delivering a new Polling API, TLS 1.3 improvements with session resumption (PSK, tickets, early data), redesigned stream error handling, an io_uring/IOCP abstraction, modernized copy infrastructure (copy_file_range, splice, sendfile), filter seeking improvements, and socket option enhancements. This is an ongoing project and will see more progress in 2026.</p>

<h4 id="ecosystem-%26-infrastructure">Ecosystem &amp; infrastructure</h4>

<p>The PHP Foundation has demonstrated meaningful contributions in several areas:</p>

<ul>
<li><strong>PIE (the new PHP extension installer)</strong>: James Titcumb authored 482 of 537 commits to php/pie (roughly 90% of the codebase)  and 109 of 156 merged PRs. He shipped 14 PIE releases including 1.0 in June, formally initiated PECL's deprecation, and delivered five conference talks evangelizing the project.</li>
<li><strong>Windows infrastructure</strong>: Shivam Mathur authored 95% of commits to php/php-windows-builder and 98% of commits to php/web-downloads. Without his work, PHP would have no Windows distribution maintainer.</li>
<li><strong>French documentation</strong>: 38% of commits and 47% of merged PRs to php/doc-fr in 2025 came from David Carlier, a community-facing impact that is often invisible in English-language reporting but reaches Francophone PHP developers worldwide.</li>
<li><strong>Infrastructure:</strong> Derick Rethans migrated nearly every php.net property (wiki, downloads, qa, pecl, bugs, docs, www, and more) to modern Ansible-managed infrastructure, expanded WebAssembly support for interactive examples in the manual, and contributed alongside Shivam and Roman on the redesigned downloads page. Máté Kocsis and Ilija built statistical benchmarking infrastructure (Welch T-Test, Wilcoxon, Valgrind, variance reduction) underpinning the team's performance work.</li>
</ul>

<h4 id="strategic-r%26d">Strategic R&amp;D</h4>

<p>Joe Watkins joined in H2 and published ORT, a PHP tensor library with backends for SSE2/SSE4.1/AVX2/AVX512, NEON, CUDA, RISC-V64, and WebAssembly (including a custom IEEE 754-2008 float16 implementation in C) reaching 97% test coverage and positioning PHP to participate in AI/ML workloads. Arnaud explored generational and Boehm GC, plus Modules and Snapshots PoCs.</p>

<h4 id="maintenance-%26-stewardship">Maintenance &amp; stewardship</h4>

<p>Beyond headline projects, the team spent a large percentage of their time carrying PHP's day-to-day weight: continuous bug triage (Ilija's largest recurring line item every month), monthly release management across 8.3.x and 8.4.x, cross-platform fixes spanning Windows, macOS, FreeBSD, Solaris, and Haiku, French (David) and Japanese (Saki) documentation contributions, mailing list moderation, and dozens of code reviews monthly across virtually every PHP subsystem. Additionally, the team spent time on maintenance and stable releases of external extensions including imagick and GnuPG, and tools like PHP-FPM that are part of PHP core.</p>

<h3 id="rfcs">RFCs</h3>

<p>The following list covers RFCs authored or co-authored by PHP Foundation contractors in 2025, along with their RFCs that changed status in 2025.</p>

<table>
  <tr>
   <td><strong>RFC</strong>
   </td>
   <td><strong>Author</strong>
   </td>
   <td><strong>Status</strong>
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/url_parsing_api">URL Parsing API (ext/uri)</a>
   </td>
   <td>Máté Kocsis
   </td>
   <td>Implemented in PHP 8.5
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/deprecations_php_8_5">PHP 8.5 Deprecations</a>
   </td>
   <td>Gina P. Banyard, Christoph M. Becker*, Daniel Scherzer*, Tim Düsterhus*, Theodore Brown*, Jorg Sowa*, David Carlier, Jakub Zelenka, Nicolas Grekas*, Volker Dusch*, Calvin Buckle*
   </td>
   <td>Implemented in PHP 8.5
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/warnings-php-8-5">PHP 8.5 Warnings</a>
   </td>
   <td>Gina P. Banyard
   </td>
   <td>Implemented in PHP 8.5
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/get-error-exception-handler">Add get_error_handler(), get_exception_handler()</a>
   </td>
   <td>Arnaud Le Blanc
   </td>
   <td>Implemented in PHP 8.5
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/stream_errors">Stream Error Handling</a>
   </td>
   <td>Jakub Zelenka
   </td>
   <td>Accepted
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/tls_session_resumption_api">TLS Session Resumption</a>
   </td>
   <td>Jakub Zelenka
   </td>
   <td>Accepted
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/make_round_behave_correctly_as_float">Make round() behave correctly as float</a>
   </td>
   <td>Saki Takamachi
   </td>
   <td>Draft
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/policy-release-process-update">Policy Release Process Update</a>
   </td>
   <td>Jakub Zelenka
   </td>
   <td>Accepted
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/context-managers">Context Managers</a>
   </td>
   <td>Arnaud Le Blanc & Larry Garfield*
   </td>
   <td>In Discussion
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/partial_function_application_v2">Partial Function Application v2</a>
   </td>
   <td>Arnaud Le Blanc & Larry Garfield*
   </td>
   <td>In Implementation
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/uri_followup">URI Followup</a>
   </td>
   <td>Máté Kocsis
   </td>
   <td>Vote started
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/adopt_pie_deprecate_pecl">Deprecate PECL / Adopt PIE</a>
   </td>
   <td>James Titcumb
   </td>
   <td>Accepted
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/pattern-matching">Pattern Matching</a>
   </td>
   <td>Ilija Tovilo & Larry Garfield*
   </td>
   <td>In Discussion
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/json_schema_validation">JSON Validation Schema Support</a>
   </td>
   <td>Jakub Zelenka
   </td>
   <td>In Discussion
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/void-as-null">Void as Null</a>
   </td>
   <td>Gina P. Banyard
   </td>
   <td>In Discussion
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/tidyexception-for-tidy">TidyException Type for Tidy</a>
   </td>
   <td>David Carlier
   </td>
   <td>In Discussion
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/deprecate-function-bool-type-juggling">Deprecate Type Juggling</a>
   </td>
   <td>Gina P. Banyard
   </td>
   <td>Declined
   </td>
  </tr>
  <tr>
   <td><a href="https://wiki.php.net/rfc/make_opcache_required">Make OPcache a non-optional part of PHP</a>
   </td>
   <td>Tim Düsterhus*, Arnaud Le Blanc, Ilija Tovilo
   </td>
   <td>Implemented in 8.5
   </td>
   </tr>
   <tr>
    <td><a href="https://wiki.php.net/rfc/static-aviz">Asymmetric Visibility for Static Properties</a>
    </td>
   <td>Ilija Tovilo & Larry Garfield*
   </td>
   <td>Implemented in 8.5
   </td>
  </tr>
   <tr>
    <td><a href="https://wiki.php.net/rfc/uri_followup">Followup Improvements for ext/uri</a>
    </td>
   <td>Máté Kocsis
   </td>
   <td>Accepted
   </td>
  </tr>
</table>

<p>*This person was not a contractor for The PHP Foundation at time of authorship, but is acknowledged here for their contribution to the RFC</p>

<h2 id="the-php-foundation-sponsors">The PHP Foundation Sponsors</h2>

<p>Our sponsors and individual contributors are the lifeblood of The PHP Foundation, for without their continued support, we would not be able to continue making meaningful contributions and improvements to the PHP language.</p>

<p>Our highest level sponsors for 2025 were <a href="https://www.sovereign.tech/">Sovereign Tech Agency,</a> <a href="https://www.jetbrains.com/">JetBrains</a>, <a href="https://automattic.com/">Automattic</a>, <a href="GoDaddy.com">GoDaddy.com</a>, <a href="https://www.passbolt.com/">Passbolt</a>, <a href="https://sentry.io/welcome/">Sentry</a>, <a href="http://Les-Tilleuls.coop">Les-Tilleuls.coop</a>, <a href="https://craftcms.com/">Craft CMS</a>, <a href="https://packagist.com/">Private Packagist</a>, <a href="https://cybozu.co.jp/en/company/">Cybozu</a>, <a href="https://tideways.com/">Tideways</a>, <a href="https://manychat.com/">Manychat</a>, <a href="https://www.perforce.com/products/zend">Zend by Perforce</a>, <a href="https://chstudio.fr/">CH Studio</a>, and <a href="https://aternos.gmbh/en/">Aternos GmbH</a>.</p>

<p>Overall, 536 organizations and individuals sponsored The PHP Foundation in 2025, which is substantially less than the previous year. This is an indication of an increasingly challenging fundraising space in the open source ecosystem, a reality our peers at other Foundations and Open Source projects are also navigating.</p>

<p>We are incredibly grateful for all those who have financially supported and continue to support The PHP Foundation.</p>

<h2 id="the-php-foundation-financial-report">The PHP Foundation Financial Report</h2>

<p>In 2025, The PHP Foundation was financially backed by organizations and individuals with the goal of paying a competitive salary to as many core developers as possible. These numbers represent figures in USD.</p>

<table>
  <tr>
   <td>
   </td>
   <td><strong>2021-2022</strong>
   </td>
   <td><strong>2023</strong>
   </td>
   <td><strong>2024</strong>
   </td>
   <td><strong>2025**</strong>
   </td>
  </tr>
  <tr>
   <td>Total donated
   </td>
   <td>$ 712,484
   </td>
   <td>$ 478,767
   </td>
   <td>$ 683,550
   </td>
   <td>$ 730,534
   </td>
  </tr>
  <tr>
   <td>Fees *
   </td>
   <td>$ 90,273
   </td>
   <td>$ 60,098
   </td>
   <td>$ 83,110
   </td>
   <td>$ 85,343
   </td>
  </tr>
  <tr>
   <td>Total received
   </td>
   <td>$ 622,211
   </td>
   <td>$ 418,669
   </td>
   <td>$ 600,440
   </td>
   <td>$ 645,191
   </td>
  </tr>
  <tr>
   <td>Expenses
   </td>
   <td>$ 133,285
   </td>
   <td>$ 275,181
   </td>
   <td>$ 635,487
   </td>
   <td>$ 784,376
   </td>
  </tr>
</table>

<p>*Fees include a 10% Open Source Collective fiscal host fee (dealing with contracts, expense reviews and payments, bank account management, official registrations and dealing with government requirements, open collective platform development etc), and 1-5% percent of payment processing fees, depending on the payment method used.</p>

<p>**Starting in 2025, some funds were donated and paid in Euro; please allow for small rounding variance due to conversion rates.</p>

<p>All incoming and outgoing transactions of The PHP Foundation are publicly available to view for anyone: <a href="https://opencollective.com/phpfoundation#category-BUDGET">https://opencollective.com/phpfoundation#category-BUDGET</a></p>

<h2 id="the-php-foundation-brand-%26-public-channels">The PHP Foundation Brand &amp; Public Channels</h2>

<p>The PHP Foundation represents a community of core PHP developers and advocates for the PHP programming language. The PHP Foundation used the channels listed below for public communication:</p>

<ul>
<li>24.8K LinkedIn page followers: <a href="https://www.linkedin.com/company/phpfoundation">https://www.linkedin.com/company/phpfoundation</a></li>
<li>13.7K X followers: <a href="https://x.com/thephpf">https://x.com/thephpf</a></li>
<li>1.2K Mastodon followers: <a href="https://phpc.social/@thephpf">https://phpc.social/@thephpf</a></li>
<li>1.2K Bluesky followers: <a href="https://bsky.app/profile/thephpf.bsky.social">https://bsky.app/profile/thephpf.bsky.social</a></li>
<li>3390 Subscribers to The PHP Foundation Newsletter</li>
</ul>

<p>We will continue to grow our social media presence as a means of connecting with the broader PHP community.</p>

<h2 id="looking-back%3A-goals-for-2025">Looking Back: Goals for 2025</h2>

<p>In the previous report, we outlined a few organizational and technical goals. Let's take a look at how we did.</p>

<h3 id="organization-goals">Organization Goals</h3>

<ul>
<li><p><strong>Secure funding to support core development and marketing initiatives.</strong> ✅</p>

<p>The PHP Foundation received funds as noted above to continue our focus on core development and the marketing of PHP and The PHP Foundation.</p></li>
<li><p><strong>Launch the "PHP 30" anniversary campaign in collaboration with JetBrains.</strong> ✅</p>

<p>The PHP Foundation celebrated <a href="https://thephp.foundation/blog/2025/06/08/php-30/">30 years of PHP</a> at the PHPverse conference hosted by JetBrains.</p></li>
<li><p><strong>Consolidate and grow social media presence across multiple platforms. ✅</strong></p>

<p>The reach and engagement for our social media accounts grew in every platform.</p></li>
<li><p><strong>Increase website traffic through improved documentation and resources. ❓</strong></p>

<p>We only added tracking to the <a href="https://php.net">php.net</a> website toward the end of 2024, so we did not have a baseline for comparison. This is something we can measure moving forward.</p></li>
<li><p><strong>Develop an Ambassador Program. ❌</strong></p>

<p>This was discussed, but not launched. Look for a version of this in 2026.</p></li>
<li><p><strong>Begin preparation for the "PHP Next" marketing campaign to highlight PHP's modernization. ❌</strong></p>

<p>This was discussed, but not launched. Look for a version of this in 2026.</p></li>
<li><p><strong>Modernize PHP's website with updated downloads page, documentation, and homepage. ⚠️ Partial</strong></p>

<p>This was partially completed and included a <a href="https://www.php.net/releases/8.5/en.php">redesigned page for the 8.5 release</a> and a clearer and more functional Downloads page. There is still work to be done on the homepage and in the documentation.</p></li>
</ul>

<h3 id="technical-goals">Technical Goals</h3>

<ul>
<li><p><strong>Continue on-going maintenance and development of the PHP core. ✅</strong></p>

<p>As demonstrated in this report, our contractors continue to focus on improving the PHP core.</p></li>
<li><p><strong>Establish a working group for integrating modern HTTP server capabilities into PHP core. ✅</strong></p>

<p>Instead, the PHP project incorporated the FrankenPHP project into its GitHub organization, offering a modern solution to running PHP in an HTTP server. This change was initiated by engineers at <a href="https://les-tilleuls.coop/en/">Les-Tilleuls.coop</a>, and implemented in partnership with the PHP Foundation.</p></li>
<li><p><strong>Address key developer experience pain points, particularly for first-time users. ⚠️ Partial</strong></p>

<p>This was partially completed with the improvements on the Downloads page, but there is still much work and research to be done here.</p></li>
</ul>

<h2 id="looking-ahead%3A-goals-for-2026">Looking Ahead: Goals for 2026</h2>

<p>2026 brings its own challenges but we are committed to continuing to make a measurable difference in the PHP language and ecosystem.</p>

<h3 id="organization-goals">Organization Goals</h3>

<ul>
<li>Complete the executive transition initiated in Q4 2025</li>
<li>Complete the onboarding of a Director of Fundraising</li>
<li>Expand support for the PHP Ecosystem</li>
<li>Improve Foundation communication, transparency, and internal documentation</li>
<li>Build a plan to improve public perception of PHP</li>
<li>Balance spending with funding and creating a systematic approach to fundraising</li>
</ul>

<h3 id="technical-goals">Technical Goals</h3>

<ul>
<li>Create Cryptography working group</li>
<li>Explore support for continued security-focused work</li>
</ul>

<h2 id="budget-plan-for-2026">Budget plan for 2026</h2>

<p>Total expenses exceeded total received donations by approximately $139,000 in 2025, which was a deliberate choice to maintain investment in technical headcount while we strengthen relationships with sponsors and individual contributors. The PHP Foundation remains financially solvent with healthy reserves, and reducing this gap is a 2026 priority.</p>

<p>We will also continue to utilize <a href="https://opencollective.com/phpfoundation">Open Collective</a> as our fiscal host, as they provide transparency and a suite of valuable financial services for The PHP Foundation.</p>

<h2 id="outro">Outro</h2>

<p>The work in this report is the runway for what's next. We head into 2026 with real momentum and a clear sense of what the community has asked of us.  None of the technical leadership, the security work, the new partnerships ahead, and the support for the PHP ecosystem happens without the people who fund us. <a href="https://thephp.foundation/sponsor/">With your help</a>, together we can keep PHP thriving in a changing open source world.</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Announcing the Ecosystem Security Team at The PHP Foundation]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/18/announcing-ecosystem-security-team/"/>
            <updated>2026-05-18T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/05/18/announcing-ecosystem-security-team/</id>
            <content type="html"><![CDATA[<p>The core <a href="https://thephp.foundation/#our-mission">mission</a> of the PHP Foundation is to ensure the long-term prosperity of the PHP language. Today, your, or your company's, financial contributions primarily fund developers working on the PHP language. In addition to sponsorships, the PHP Foundation uses grants to enable projects like last year's <a href="https://thephp.foundation/blog/2025/04/10/php-core-security-audit-results/">PHP Core Security Audit</a> funded by the <a href="https://www.sovereign.tech">Sovereign Tech Agency</a>.</p>

<p>In March, the <a href="https://www.linuxfoundation.org/press/linux-foundation-announces-12.5-million-in-grant-funding-from-leading-organizations-to-advance-open-source-security">Linux Foundation announced a grant</a> with the goal of strengthening the security of the open source software ecosystem. This funding is managed by <a href="https://alpha-omega.dev">Alpha-Omega</a> and the Open Source Security Foundation <a href="https://openssf.org">(OpenSSF)</a>.</p>

<p><strong>We're delighted to announce the PHP Foundation has been awarded a grant from <a href="https://alpha-omega.dev">Alpha-Omega</a> to help improve the security of the PHP open source ecosystem.</strong></p>

<p>PHP is foundational to the modern web, and ensuring its security is essential for a significant portion of the web's functionality and integrity.</p>

<p>New security tools making use of AI are accelerating the discovery of vulnerabilities in open source software. Initiatives like <a href="https://www.anthropic.com/glasswing">Project Glasswing</a> are attempting to prepare software for the increasing accessibility of such tooling to bad actors. A number of large PHP projects have already received and acted on credible audit reports and concrete issues found by these new tools.</p>

<p>At the same time, many projects have been reporting a drastic increase in the volume of vulnerability reports they have to deal with, many bearing the hallmarks of lazy AI generation. These low-quality reports waste maintainers' time and overshadow legitimate issues.</p>

<p>The PHP Foundation is creating a PHP Ecosystem Security Team to help our ecosystem maintainers with these new challenges. This new PHP Foundation team will help triage vulnerability reports and disclose them responsibly as necessary. It will work on tooling to discover, classify and remediate security vulnerabilities and share emerging techniques on using them effectively and help the PHP ecosystem adopt these tools. The team will respect maintainer bandwidth, provide high-quality reports, coordinate project access to new security tooling, support projects with only a few maintainers, and find solutions for projects with <a href="https://alpha-omega.dev/blog/weekend-at-bernies-which-of-your-dependencies-are-wearing-sunglasses/">no active maintainers at all</a>.</p>

<p>We're excited our friends at the <a href="https://www.drupal.org/association">Drupal Association</a> were awarded a similar grant from Alpha-Omega to secure the Drupal ecosystem built on top of PHP. The PHP Foundation is looking forward to collaborating with the Drupal Security Team on shared approaches and we hope to be joined by more experts from individual PHP projects and subcommunities as we build out the new team.</p>

<p>The PHP Foundation grant will fund a six-month full-time position titled "Ecosystem AI Security Engineer in Residence at the PHP Foundation" to lead this effort and to prepare a sustainability plan for the time after this initial phase. This person will act as a trusted intermediary between security researchers and maintainers in urgent, high-risk situations, and will collaborate with peers in similar roles across other language ecosystems. Additionally, grant funding will also be employed toward the team goals described above where they cannot be accomplished by the single paid lead position or with the help of PHP community volunteers.</p>

<p>After many conversations with community leaders in the PHP ecosystem, known security experts and Foundation stakeholders, the PHP Foundation board voted unanimously to offer the position to <a href="https://phpc.social/@edorian">Volker Dusch (@edorian)</a>. We asked Volker to introduce himself.</p>

<h2 id="meet-volker">Meet Volker</h2>

<p><img src="/assets/post-images/2026/ecosystem-security/volker-dusch.png" width="300" alt="headshot of volker dusch" class="mb-4 sm:mr-4 sm:float-left"/>👋,</p>

<p>Some of you may know me as one of the PHP 8.5 Release Managers, or might have met me at one of more than 100 PHP-related conferences I've visited or spoken at in the last 20 years.</p>

<p>PHP has been the main programming language of my professional career, from helping maintain PHPUnit for a couple of years and more recently, working on various language RFCs.</p>

<p>In the past, I've worked on a high-traffic social networking site, remote monitoring of solar plants and software for medical trials. Currently, I'm working on PHP performance and monitoring tooling at Tideways, which I'm grateful to for allowing me to take some time off to focus on this new challenge.</p>

<h2 id="interested-in-hearing-from-me%3F-got-feedback%3F">Interested in hearing from me? Got feedback?</h2>

<p>My goal is to be open and communicate early about how the Ecosystem Security Team is taking shape while making the most of the resources we have.</p>

<p>Big projects and foundational libraries are on my radar for security analysis already, and I'm especially keen to hear from people who want to actively collaborate and have the bandwidth to do so.</p>

<p>So if you want to put your project forward or have questions or comments for me, I'd love to hear from you!</p>

<p>Get in touch via email: <a href="&#x6d;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x76;&#111;&#x6c;&#x6b;&#101;&#x72;&#64;&#x74;&#x68;&#101;&#x70;&#104;&#x70;&#x2e;&#102;&#x6f;&#117;&#x6e;&#x64;&#97;&#x74;&#105;&#x6f;&#x6e;">volker@thephp.foundation</a>.</p>

<p>You can also find me on <a href="https://phpc.social/@edorian">Mastodon</a> and <a href="https://www.linkedin.com/in/volker-dusch/">LinkedIn</a>.</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Announcing Plans for a PHP Ecosystem Survey and Report]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/04/22/announcing-plans-for-a-php-ecosystem-survey/"/>
            <updated>2026-04-22T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/04/22/announcing-plans-for-a-php-ecosystem-survey/</id>
            <content type="html"><![CDATA[<p>This year, The PHP Foundation, in collaboration with PhpStorm, a JetBrains IDE, will release an official ecosystem report with data-driven insights into the current state and the future of PHP development. The report will be based on data collected from a PHP developer survey, where we’ll ask developers about their experience with the language and ecosystem.</p>

<p>Our goal is to capture perspectives from across the PHP community – we want as many voices as possible to be included. To make that happen, we’re starting by collecting suggestions for survey questions.</p>

<p>This week, you can submit your proposed questions and upvote others through a <a href="https://app.sli.do/event/3NShya1PmdgByuuufXoqpF">dedicated form</a>. We’ll review all submissions and select the most interesting ones to include in the survey, which will launch in June. If you have an idea for a question, you can <a href="https://app.sli.do/event/3NShya1PmdgByuuufXoqpF">submit your question here.</a></p>

<p>The submissions are open until <strong>April 28, 2026</strong>. We look forward to hearing from you!</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Integrating Community Feedback into Foundation Strategy Part 1]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/04/16/integrating-community-feedback-into-foundation-strategy-part1/"/>
            <updated>2026-04-16T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/04/16/integrating-community-feedback-into-foundation-strategy-part1/</id>
            <content type="html"><![CDATA[<h2 id="integrating-community-input-into-foundation-strategy">Integrating Community Input Into Foundation Strategy</h2>

<h3 id="part-1%3A-feedback-from-the-community">Part 1: Feedback from the Community</h3>

<p>Oh my friends, we have so much to talk about.</p>

<p>I’ve been with The PHP Foundation for a few weeks, and many people have asked me about my vision, goals, and strategy for the upcoming year. In my opinion, The PHP Foundation’s stated mission of <em>ensuring the long-term prosperity of the PHP language</em> can be interpreted many different ways. So what exactly does this mean in terms of actionable efforts that will impact the community in the ways that align with this mission?</p>

<p>To answer that question, my goal was simple: listen to people who have a vested interest in the success of PHP and see what themes emerge. So I opened my calendar, messages, and email, and you all answered the call.</p>

<p>So far, I have connected with around 60 people from 18 countries. I’ve heard from PHP community members, people working in the ecosystem, maintainers of PHP projects, consultants, sponsors, core developers, leaders of other open source foundations, user group organizers, and of course, our own Foundation staff and Board members. I am thrilled that you all had a lot to say, because as I’ve said before, apathy is a much harder problem to tackle.</p>

<p>Before I share the findings, It is important to note a few things:</p>

<ul>
<li>Even though people identified many issues that could be better, there is still much love for PHP and the community.</li>
<li>Some of the issues brought to me are not within the scope of The PHP Foundation’s authority. That being said, there are places where we can offer our support.</li>
<li>These findings represent the concerns that were brought to me, and they aren’t presented as “fact” or official opinions of The PHP Foundation.</li>
<li>Some of the findings may be of no surprise to you. And some of them may not resonate with you personally. I’d just ask that you keep in mind that the feedback is honestly presented as it was shared, and that these are also valid experiences from others.</li>
</ul>

<h3 id="high-level-summary-of-findings">High Level Summary of Findings</h3>

<p>Overall, these were the biggest takeaways:</p>

<ul>
<li>PHP’s biggest challenges are perception, coordination, and onboarding, not technical capability</li>
<li>The community loves the language and would choose PHP over other options, despite the challenges</li>
<li>The ecosystem is large but fragmented</li>
<li>The newcomer experience, education, and talent pipeline have room for improvement</li>
<li>The PHP Foundation’s role and impact is not well understood</li>
<li>Funding is a shared challenge across open source</li>
<li>AI brings much uncertainty and many polarizing opinions, so agreeing upon a unified approach will be very challenging</li>
</ul>

<p>I've classified the feedback I received into four primary buckets:</p>

<p><img src="/assets/post-images/2026/feedback-strategy-pt1/community-feedback-categories.jpg" alt="Categories" /></p>

<p>I created this <a href="https://raw.githubusercontent.com/ThePHPF/talks/main/board-presentations/PHP%20Community%20Feedback%20Summary%20-%20April%202026.pdf">slide presentation</a> to share and summarize the feedback I received. You can also <a href="https://github.com/ThePHPF/talks/blob/main/board-presentations/PHP%20Community%20Feedback%20Summary%20-%20April%202026.pdf">view it on GitHub as a PDF</a> or <a href="https://github.com/ThePHPF/talks/blob/main/board-presentations/PHP%20Community%20Feedback%20Summary%20-%20April%202026.md">in Markdown</a>. I encourage you to take a look.</p>

<h3 id="what%E2%80%99s-next%3F">What’s Next?</h3>

<p>In a follow up blog post (Part 2), I will be sharing The PHP Foundation’s strategies that aim to address some of these issues. And as always, please don’t hesitate to reach out if you have input or feedback to share. You can reach me via <a href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#101;&#x6c;&#105;&#122;&#x61;b&#101;&#x74;&#x68;&#64;&#x74;&#x68;&#101;&#112;&#x68;&#112;&#46;&#x66;o&#117;&#x6e;&#x64;&#97;&#x74;&#x69;&#111;&#110;">email</a> or you can schedule some 1:1 time with me on my <a href="https://calendar.app.google/z2ckJ5LDn4qSyHCx7">calendar</a>.</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Welcoming Matt Stauffer to The PHP Foundation Board]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/03/25/welcoming-matt-stauffer-to-the-php-foundation-board/"/>
            <updated>2026-03-25T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/03/25/welcoming-matt-stauffer-to-the-php-foundation-board/</id>
            <content type="html"><![CDATA[<p><img src="/assets/post-images/2026/matt-stauffer/matt-stauffer.jpg" width="300" alt="headshot of matt stauffer" class="mb-4 sm:mr-4 sm:float-left"/> We are thrilled to announce that <a href="https://www.linkedin.com/in/mattstauffer/">Matt Stauffer</a> has agreed to join The PHP Foundation Board, where he will bring his decades of experience in the PHP ecosystem. Matt joins the Board as a community representative and was voted in by the existing Board members. Not only is Matt a Laravel expert, he has created / maintained dozens of PHP and JavaScript open source packages, he is a published author, and he hosts several successful industry podcasts. We are grateful for his insight, input, and leadership as we further our mission of sustaining a thriving PHP language and ecosystem.</p>

<p>Please join us in welcoming Matt to the Foundation Board!</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Working Together on the Future of PHP]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/03/05/working-together-on-the-future-of-php/"/>
            <updated>2026-03-05T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/03/05/working-together-on-the-future-of-php/</id>
            <content type="html"><![CDATA[<p>I’m incredibly excited to be joining the PHP Foundation as the Executive Director and continuing the work that has been done under the leadership of Roman Pronskiy and the Board. For those who don’t know me, I look forward to meeting you!</p>

<h2 id="a-little-about-me">A little about me</h2>

<p>PHP was my introduction to open source, when PHP 3 was the latest release. It was mind blowing to see an amazing group of smart, funny people collaborate with each other, help newbies, and build impactful things together while still having fun. People who lived thousands of miles away from each other and who had never met each other. People who had completely different backgrounds and daily lives. People who spoke different languages and lived in different time zones. They all managed to find a way to come together as a community. They wrote code, they organized events, they started local user groups, they built projects together, and they helped each other learn. Forgive my sentimentality, but it was (and still is) magical.</p>

<p>It was this sense of community that fascinated me most, and I found myself moving from PHP development to open source community management. Since officially making that switch in 2010, I’ve worked for companies like GitHub, Sourceforge, and Pivotal, striving to make open source healthier, more inclusive, and better for everyone. I wanted anyone with an interest to be able to join the open source party, bring their unique set of skills, and experience the magic firsthand.</p>

<p>For the last 6 years, I have worked as the Community Manager for an open source project called <a href="https://chaoss.community">CHAOSS</a> which focuses on open source community health and sustainability. It has been an unforgettable experience, I’m very proud of what we all accomplished together, and I love that community very much. But as I find my career pivoting back toward PHP, it honestly feels like coming home again.</p>

<h2 id="looking-to-the-future">Looking to the future</h2>

<p>The progress that has been made by the Foundation in the last few years is remarkable! Moving forward, you can expect to see the same kind of commitment to improving the PHP language and to keeping PHP relevant and sustainable.</p>

<p>In addition, we aim to increase the Foundation’s transparency and openness, and to strengthen our collaborative relationships with users, sponsors, contributors, organizations, and the PHP community at large. A solid and thriving PHP ecosystem belongs to and benefits us all, but none of us can make that happen alone.</p>

<h2 id="let%E2%80%99s-chat%21">Let’s chat!</h2>

<p>Because we’re all in this together, I want to spend the next 1-2 months really listening to what you have to say. I have an <a href="https://calendar.app.google/UkqNQzuzYBbEYjLYA">open calendar</a> and I encourage you to reserve some time with me. I want to hear from PHP developers, contributors, companies using PHP, independent consultants, sponsors, community members, and anyone else interested in the future of PHP. I want to hear about your goals, your motivations, your pain points, and yes, even your wacky and unorthodox ideas. And if meetings aren’t your thing, that’s completely understandable. You can also send me an <a href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#101;&#x6c;&#105;&#122;&#x61;b&#101;&#x74;&#x68;&#64;&#x74;&#x68;&#101;&#112;&#x68;&#112;&#46;&#x66;o&#117;&#x6e;&#x64;&#97;&#x74;&#x69;&#111;&#110;">email</a>. (I’ll even check my inbox!)</p>

<p>PHP’s secret recipe has always been its community and I can’t wait to be collaborating with you all again!</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Welcoming Elizabeth Barron as the New Executive Director of The PHP Foundation]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/02/27/welcoming-elizabeth-barron-new-executive-director/"/>
            <updated>2026-02-27T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/02/27/welcoming-elizabeth-barron-new-executive-director/</id>
            <content type="html"><![CDATA[<p>We're excited to welcome <a href="https://www.linkedin.com/in/elizabethn">Elizabeth Barron</a> as the next Executive Director of The PHP Foundation, following a thorough process led by our search committee of <a href="https://www.linkedin.com/in/nilsadermann/">Nils Adermann</a>, <a href="https://www.linkedin.com/in/sebastian-bergmann-phpunit">Sebastian Bergmann</a>, <a href="https://www.linkedin.com/in/lornajane/">Lorna Mitchell</a>, and <a href="https://www.linkedin.com/in/benramsey/">Ben Ramsey</a>.</p>

<p>Elizabeth brings a rare combination of deep roots in the PHP community and proven leadership in open-source governance. She co-founded a volunteer-based nonprofit dedicated to supporting women and non-binary individuals in the PHP industry, served as Community Manager at GitHub where she led developer outreach programs including the Patchwork initiative, and has been active in CHAOSS – a project focused on open-source community health metrics.</p>

<p>Her experience spanning community building, fundraising, outreach operations, and open-source strategy makes her a natural fit to lead the foundation into its next chapter.</p>

<p>As previously announced, founding Executive Director <a href="https://www.linkedin.com/in/pronskiy/">Roman Pronskiy</a> is transitioning to focus on his growing role at <a href="https://www.jetbrains.com/">JetBrains</a>, while continuing to serve on the Board of Directors. Roman will work closely with Elizabeth to ensure a smooth handover.</p>

<p><figure class="max-w-screen-md mx-auto text-center mb-6" id="quote-elizabeth-barron">
    <svg class="w-10 h-10 mx-auto mb-3 text-gray-400" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 18 14">
        <path d="M6 0H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v1a3 3 0 0 1-3 3H2a1 1 0 0 0 0 2h1a5.006 5.006 0 0 0 5-5V2a2 2 0 0 0-2-2Zm10 0h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v1a3 3 0 0 1-3 3h-1a1 1 0 0 0 0 2h1a5.006 5.006 0 0 0 5-5V2a2 2 0 0 0-2-2Z"/>
    </svg>
    <blockquote>
        <p class="italic text-gray-900">“In just a few years, The PHP Foundation has built something remarkable, and I'm honored to take on this role and continue that work. PHP powers a huge part of the web, and I'm excited to work with the Board, our core developers, and the broader PHP community to strengthen and expand the Foundation's impact so that together we can ensure PHP thrives for decades to come.”</p>
    </blockquote>
    <figcaption class="flex items-center justify-center mt-3 space-x-3 rtl:space-x-reverse">
        <img class="w-10 h-10 rounded-full" src="/assets/team/elizabeth_barron.jpeg" alt="profile picture">
        <div class="flex items-center">
            <cite class="pl-0.5 font-medium text-gray-900">Elizabeth Barron, </cite>
            <cite class="pl-1 text-gray-500">Executive Director, The PHP Foundation</cite>
        </div>
    </figcaption>
</figure>
</p>

<p><br>
Please join us in welcoming Elizabeth. We're looking forward to what's ahead.
🐘💜</p>
]]></content>
        </entry>
            <entry>
            <title type="html"><![CDATA[Meet team.blue: A PHP Foundation Sponsor supporting the language at the core of its ecosystem]]></title>
            <link href="https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/01/26/meet-team-blue-php-foundation-sponsor/"/>
            <updated>2026-01-26T00:00:00+00:00</updated>
            <id>https://deploy-pr-284--thephpfoundation.netlify.app/blog/2026/01/26/meet-team-blue-php-foundation-sponsor/</id>
            <content type="html"><![CDATA[<p>Starting January 2026, <strong>team.blue</strong> joined the PHP Foundation as a <strong>Gold Sponsor</strong>, reinforcing its long-term commitment to supporting the open-source technologies that power millions of businesses across Europe.</p>

<p><a href="https://team.blue/">team.blue</a> is a leading AI-powered digital enabler serving small and medium businesses (SMBs) and agencies across Europe. With more than 4,000 experts, 3.3 million customers, and operations in over 22 countries, team.blue provides businesses with the digital tools they need to build, grow, and scale online. Its ecosystem spans domains, hosting, cloud solutions, website and e-commerce tools, and a fast-growing portfolio of AI-driven SaaS products. For team.blue, PHP represents a foundational technology across its platforms and services.</p>

<h2 id="php%3A-the-engine-behind-team.blue%27s-platforms">PHP: the engine behind team.blue's platforms</h2>

<p>PHP's performance, stability, and extensive ecosystem also provide a scalable basis for delivering AI-powered capabilities and intelligent user journeys, enabling million SMBs to grow and succeed online. PHP underpins:</p>

<ul>
<li><p><strong>Shared hosting and managed WordPress products</strong> at brands like Combell, Register.it, and TransIP.</p></li>
<li><p><strong>PHP-based SaaS products</strong> (core app logic, integrations, and day-to-day feature work).</p></li>
<li><p><strong>Internal tools and systems</strong> used across the group.</p></li>
</ul>

<p>PHP's mature ecosystem and proven scalability allow team.blue to build sophisticated digital tools that help SMBs and agencies grow online, demonstrating how the language powers modern high-traffic platforms across diverse use cases.</p>

<p>Discover more about the team.blue ecosystem: <a href="https://team.blue/our-ecosystem/">https://team.blue/our-ecosystem/</a></p>

<h2 id="giving-back-to-the-php-community">Giving back to the PHP community</h2>

<p><figure class="max-w-screen-md mx-auto text-center mb-6" id="quote-kirk-barlow">
    <svg class="w-10 h-10 mx-auto mb-3 text-gray-400" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 18 14">
        <path d="M6 0H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v1a3 3 0 0 1-3 3H2a1 1 0 0 0 0 2h1a5.006 5.006 0 0 0 5-5V2a2 2 0 0 0-2-2Zm10 0h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v1a3 3 0 0 1-3 3h-1a1 1 0 0 0 0 2h1a5.006 5.006 0 0 0 5-5V2a2 2 0 0 0-2-2Z"/>
    </svg>
    <blockquote>
        <p class="italic text-gray-900">“Open-source communities have always been essential to how we build and scale. PHP sits at the core of our hosting and WordPress ecosystem, so we are proud to give back and support the Foundation in ensuring its long-term growth. This sponsorship reinforces our belief that open-source thrives when everyone contributes.”</p>
    </blockquote>
    <figcaption class="flex items-center justify-center mt-3 space-x-3 rtl:space-x-reverse">
        <img class="w-10 h-10 rounded-full" src="/assets/post-images/2026/team-blue/kirk-barlow.png" alt="profile picture">
        <div class="flex items-center">
            <cite class="pl-0.5 font-medium text-gray-900">Kirk Barlow, </cite>
            <cite class="pl-1 text-gray-500">Group Chief Technical Officer, team.blue</cite>
        </div>
    </figcaption>
</figure>
</p>

<p>As a Gold Sponsor, team.blue is putting tangible support behind PHP, helping accelerate progress, maintain strong security, and back the ecosystem globally, while directly supporting the essential work of maintenance, continuous improvement, and ensuring the language remains ready for what comes next.</p>

<p>Learn more about team.blue and its mission to make online business success simpler: <a href="https://team.blue/">https://team.blue/</a></p>
]]></content>
        </entry>
    </feed>