PHPackages                             revolution/laravel-boost-phpstorm-copilot - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. revolution/laravel-boost-phpstorm-copilot

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

revolution/laravel-boost-phpstorm-copilot
=========================================

Laravel Boost Custom Agent for PhpStorm with GitHub Copilot plugin

2.0.2(2mo ago)24.5k—2.3%1MITPHPPHP ^8.3CI passing

Since Nov 1Pushed 2mo agoCompare

[ Source](https://github.com/invokable/laravel-boost-phpstorm-copilot)[ Packagist](https://packagist.org/packages/revolution/laravel-boost-phpstorm-copilot)[ GitHub Sponsors](https://github.com/invokable)[ RSS](/packages/revolution-laravel-boost-phpstorm-copilot/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (8)Versions (24)Used By (1)

Laravel Boost Custom Agent for PhpStorm with GitHub Copilot plugin
==================================================================

[](#laravel-boost-custom-agent-for-phpstorm-with-github-copilot-plugin)

[![tests](https://github.com/invokable/laravel-boost-phpstorm-copilot/actions/workflows/tests.yml/badge.svg)](https://github.com/invokable/laravel-boost-phpstorm-copilot/actions/workflows/tests.yml)

[![Ask DeepWiki](https://camo.githubusercontent.com/0f5ae213ac378635adeb5d7f13cef055ad2f7d9a47b36de7b1c67dbe09f609ca/68747470733a2f2f6465657077696b692e636f6d2f62616467652e737667)](https://deepwiki.com/invokable/laravel-boost-phpstorm-copilot)

Requirements
------------

[](#requirements)

- PHP &gt;= 8.3
- Laravel &gt;= 12.x
- [Laravel Boost](https://github.com/laravel/boost) &gt;= 2.0
- [GitHub Copilot plugin](https://plugins.jetbrains.com/plugin/17718-github-copilot) installed in PhpStorm

### Suggest

[](#suggest)

- [laravel-copilot-sdk](https://github.com/invokable/laravel-copilot-sdk) Copilot SDK for Laravel

Supported Platforms
-------------------

[](#supported-platforms)

- macOS
- Windows (Native Windows)
- Linux

### Laravel Sail

[](#laravel-sail)

It also supports Laravel Sail. Before use, start it with `vendor/bin/sail up -d`.

### WSL (Windows Subsystem for Linux)

[](#wsl-windows-subsystem-for-linux)

This package supports WSL environments where PhpStorm runs on native Windows and PHP runs in WSL. This is a common development setup that provides Windows IDE features with Linux development environment.

#### Requirements for WSL

[](#requirements-for-wsl)

- `wslu` package must be installed in WSL
- Check if installed: `wslvar -v`
- Install if needed: `sudo apt install wslu`
- Ensure your user profile is on the C drive (default location)

How it works1. **Detection**: Automatically detects WSL environment by checking `WSL_DISTRO_NAME` environment variable
2. **Path Resolution**: Uses `wslvar LOCALAPPDATA` to get Windows AppData\\Local path (e.g., `C:\Users\YourUsername\AppData\Local`)
3. **File Writing**: Writes MCP config to Windows side via PowerShell commands
    - Creates temporary file in Windows `%TEMP%` directory
    - Uses Base64 encoding to safely transfer JSON content
    - Copies to final location: `%LOCALAPPDATA%\github-copilot\intellij\mcp.json`
4. **Path Handling**: Converts WSL paths to Windows paths for absolute command and artisan paths

Troubleshooting WSL- Ensure `wslu` is installed and `wslvar` command works
- Check that PowerShell is accessible from WSL with `powershell.exe -Command "Write-Output 'test'"`
- Verify Windows LOCALAPPDATA path with `wslvar LOCALAPPDATA` (should return `C:\Users\YourUsername\AppData\Local`)
- If MCP config file is not created, check Windows directory permissions
- Ensure your user profile is on the C drive (default location)
- `[error] WSL Interoperability is disabled. Please enable it before using WSL.` If you see this error, enable WSL Interop by adding the following binfmt configuration:

```
echo ":WSLInterop:M::MZ::/init:PF" | sudo tee /usr/lib/binfmt.d/WSLInterop.conf
sudo systemctl restart systemd-binfmt
```

#### Remote Development

[](#remote-development)

Running PhpStorm within WSL is not supported.Because it is not possible to distinguish between a "Windows version of PhpStorm and WSL environment" and a "PhpStorm remote development environment with WSL". The remote development environment is the same as Linux, so if you really want to use it, please configure the MCP file manually. `~/.config/github-copilot/intellij/mcp.json`

```
{
  "servers": {
    "laravel-boost": {
      "command": "/absolute/path/to/php",
      "args": ["/absolute/path/to/laravel/artisan", "boost:mcp"]
    }
  }
}
```

#### Recommendation for WSL

[](#recommendation-for-wsl)

Consider using [laravel-boost-copilot-cli](https://github.com/invokable/laravel-boost-copilot-cli), which allows you to use a project-level MCP configuration file.

### Testbench for Package Developers

[](#testbench-for-package-developers)

Not supported. Please use [laravel-boost-copilot-cli](https://github.com/invokable/laravel-boost-copilot-cli) instead.

Installation
------------

[](#installation)

```
composer require revolution/laravel-boost-phpstorm-copilot --dev
```

Usage
-----

[](#usage)

When you run the Laravel Boost installation command within your Laravel project, you'll see a `PhpStorm with GitHub Copilot` item added to the list.

- First, you will see `Which Boost features would you like to configure?`. The files will be installed depending on the features you select.
    - `AI Guidelines`: `.github/instructions/laravel-boost.instructions.md`
    - `Agent Skills`: `.github/skills`
    - `Boost MCP Server Configuration`: A location appropriate for your environment.
- Next, you will see `Which AI agents would you like to configure?`. Select `PhpStorm with GitHub Copilot` for the AI agent.

```
php artisan boost:install
```

Note

**DO NOT** select `PhpStorm`, it's actually `PhpStorm Junie`

### Important

[](#important)

With PhpStorm and GitHub Copilot plugin, the MCP configuration file is stored in a system-wide location. Therefore, you need to run the `boost:install` command to update the configuration file whenever you switch Laravel projects. The configuration file contains the absolute path to your Laravel project.

```
php artisan boost:install --guidelines --skills --mcp --no-interaction
```

In boost 1.8 and later, the `boost:update` command does not update the MCP configuration file.

### MCP Configuration File Location by OS

[](#mcp-configuration-file-location-by-os)

- macOS, Linux: `~/.config/github-copilot/intellij/mcp.json`
- Windows: `%LOCALAPPDATA%\github-copilot\intellij\mcp.json`

License
-------

[](#license)

MIT

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance85

Actively maintained with recent releases

Popularity27

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 62.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Recently: every ~16 days

Total

23

Last Release

86d ago

Major Versions

0.1.7 → 1.0.02025-11-05

1.1.2 → 2.0.02026-01-26

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/77618633?v=4)[Revolution](/maintainers/revolution)[@Revolution](https://github.com/Revolution)

---

Top Contributors

[![kawax](https://avatars.githubusercontent.com/u/1502086?v=4)](https://github.com/kawax "kawax (53 commits)")[![puklipo](https://avatars.githubusercontent.com/u/88759954?v=4)](https://github.com/puklipo "puklipo (32 commits)")

---

Tags

copilotlaravel-boostphpstormlaravelphpstormboostgithub-copilot

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/revolution-laravel-boost-phpstorm-copilot/health.svg)

```
[![Health](https://phpackages.com/badges/revolution-laravel-boost-phpstorm-copilot/health.svg)](https://phpackages.com/packages/revolution-laravel-boost-phpstorm-copilot)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[gonetone/laravel-boost-windsurf-extension

Laravel Boost extension package that provides Windsurf editor and Windsurf JetBrains plugin integration.

239.1k](/packages/gonetone-laravel-boost-windsurf-extension)[spatie/boost-spatie-guidelines

Spatie's Laravel &amp; PHP coding guidelines for Laravel Boost

8455.5k4](/packages/spatie-boost-spatie-guidelines)[mischasigtermans/laravel-altitude

Claude Code agents for the TALL stack, powered by Laravel Boost

1139.2k](/packages/mischasigtermans-laravel-altitude)[soyhuce/next-ide-helper

Laravel ide helper rebuilt under steroids

4756.2k3](/packages/soyhuce-next-ide-helper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
