Skip to content

πŸŽ‰ PHP Tools Now Supports Zed IDE – Full Tutorial Inside!#

We're thrilled to announce that Zed IDE is now officially supported by our PHP Tools extension! πŸŽ‰

Zed is a modern, fast, and hackable IDE, and we’ve been hard at work making sure that PHP developers get the best experience when using it. That includes features you’ve come to expect, such as:

  • βœ… Full IntelliSense
  • βœ… Code Actions & Quick Fixes
  • βœ… Real-time Code Diagnostics
  • βœ… Code Formatting
  • βœ… Laravel IDE Support
  • βœ… Inlay Hints

In this post, we’ll walk you through setting it all up in just a few steps.


πŸ› οΈ Step 1 – Install the PHP Extension#

  1. Open Zed IDE.
  2. From the top menu, go to:
    Zed β†’ Extensions
  3. In the search box, type:
    php
  4. Click Install on the PHP extension.

php extension install


βš™οΈ Step 2 – Configure PHP Language Support#

  1. From the top menu, go to:
    Zed β†’ Settings β†’ Open Settings
  2. In the settings JSON, add the following section:
"languages": {
  "PHP": {
    "language_servers": ["phptools"]
  }
}

This tells Zed to use our PHP Tools language server for all PHP files.

zed settings


πŸ’‘ Optional – Enable Inlay Hints#

Want to see parameter names inline? Add this to your settings:

"inlay_hints": {
  "enabled": true,
  "show_parameter_hints": true
}

🌟 Enable Premium Features#

If you have a license key, you can unlock premium features like refactoring and quick fixes.

In the same settings file, add this section:

"lsp": {
  "phptools": {
    "initialization_options": {
      "0": "<YOUR LICENSE KEY>"
    }
  }
}

Just replace <YOUR LICENSE KEY> with your actual key.

zed ide php


πŸš€ You're All Set!#

With PHP Tools now integrated into Zed IDE, you're ready to enjoy a powerful PHP coding experience, including:

  • Real-time code assistance
  • Automatic formatting
  • Deep Laravel integration
  • Smooth workflow with modern IDE features

If you haven’t tried Zed yet, now’s the perfect time. And if you're already using it β€” welcome to the future of PHP development. 🐘✨

Happy coding!