PHPackages                             cjmellor/boost-ide-bundle - 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. cjmellor/boost-ide-bundle

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

cjmellor/boost-ide-bundle
=========================

Extended IDE support bundle for Laravel Boost. Multiple development environments, one package.

v1.0.1(8mo ago)1961[2 PRs](https://github.com/cjmellor/boost-ide-bundle/pulls)MITPHPPHP ^8.1CI passing

Since Oct 16Pushed 3mo agoCompare

[ Source](https://github.com/cjmellor/boost-ide-bundle)[ Packagist](https://packagist.org/packages/cjmellor/boost-ide-bundle)[ Docs](https://github.com/cjmellor/boost-ide-bundle)[ RSS](/packages/cjmellor-boost-ide-bundle/feed)WikiDiscussions main Synced today

READMEChangelog (2)Dependencies (7)Versions (5)Used By (0)

[![Latest Version on Packagist](https://camo.githubusercontent.com/64914baa75414cf56f5bb30d7ad76754ad2fe40aaaefa3f0ea9f887cdc5bd2d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636a6d656c6c6f722f626f6f73742d6964652d62756e646c653f636f6c6f723d7267622532383536253230313839253230323438253239266c6162656c3d72656c65617365267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/cjmellor/boost-ide-bundle)[![Total Downloads](https://camo.githubusercontent.com/8f06e55fba62a320f8323c00f6e69782996d663b553bf2bd621a347579fbee89/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636a6d656c6c6f722f626f6f73742d6964652d62756e646c652e7376673f636f6c6f723d7267622532383234392532303131352532303232253239267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/cjmellor/boost-ide-bundle)[![Packagist PHP Version](https://camo.githubusercontent.com/851c3acc107a59a34b2710fa97796a9bcabe63251cf619d23cde800ce8ac6b25/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f636a6d656c6c6f722f626f6f73742d6964652d62756e646c652f7068703f636f6c6f723d726762253238313635253230313830253230323532253239266c6f676f3d706870266c6f676f436f6c6f723d726762253238313635253230313830253230323532253239267374796c653d666f722d7468652d6261646765)](https://camo.githubusercontent.com/851c3acc107a59a34b2710fa97796a9bcabe63251cf619d23cde800ce8ac6b25/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f636a6d656c6c6f722f626f6f73742d6964652d62756e646c652f7068703f636f6c6f723d726762253238313635253230313830253230323532253239266c6f676f3d706870266c6f676f436f6c6f723d726762253238313635253230313830253230323532253239267374796c653d666f722d7468652d6261646765)[![Laravel Version](https://camo.githubusercontent.com/37727a23101e486ede3bb7e8e82357fca2757f2a85840eb439611f4a60f815fb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d313025323025453225383025393325323031322d7267622832333525323036382532303530293f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c)](https://camo.githubusercontent.com/37727a23101e486ede3bb7e8e82357fca2757f2a85840eb439611f4a60f815fb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d313025323025453225383025393325323031322d7267622832333525323036382532303530293f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c)

Boost IDE Bundle
================

[](#boost-ide-bundle)

Extended IDE support bundle for [Laravel Boost](https://github.com/laravel/boost). It provides a simple, convention-based way to register multiple IDE-aware code environments in your Laravel application.

Features
--------

[](#features)

- Automatic discovery of environment classes
- Zero configuration — uses Laravel package auto-discovery
- Compatible with Laravel 10, 11, and 12; PHP 8.1+

Included environments:

- `Cline`
- `KiloCode`
- `Kiro`
- `RooCode`
- `Trae`
- `Warp`

Warning

I (the maintainer) don't use all these IDE/Agents, so I cannot guarentee the config locations are correct. If they are wrong, please submit a PR to fix it.

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

[](#requirements)

- PHP `^8.1`
- Laravel `^10 | ^11 | ^12`
- Laravel Boost `1.4`

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

[](#installation)

Install via Composer:

```
composer require cjmellor/boost-ide-bundle --dev

# Ensure Laravel Boost is present in your app (if not already installed)
composer require laravel/boost:^1.4 --dev
```

This package uses Laravel’s auto-discovery. No manual provider registration is needed.

How It Works
------------

[](#how-it-works)

- The service provider scans `src/CodeEnvironments` for `*.php` classes.
- Each class must extend `Laravel\Boost\Install\CodeEnvironment\CodeEnvironment` and implement `name(): string`.
- On boot, the bundle registers each environment with `Laravel\Boost\Boost::registerCodeEnvironment($name, $class)`.

Usage
-----

[](#usage)

Out of the box, the environment classes in `src/CodeEnvironments` are registered automatically.

### Adding Your Own Environment

[](#adding-your-own-environment)

Create a class in `src/CodeEnvironments` that extends Boost’s `\Laravel\Boost\Install\CodeEnvironment\CodeEnvironment` and implement the required methods.

Drop the file in `src/CodeEnvironments` and it will be discovered automatically on the next boot.

Conventions
-----------

[](#conventions)

No dedicated configuration file is required; the bundle follows these conventions:

- Files are read from `src/CodeEnvironments`
- Class names must be ucfirst (first letter uppercase)
- `name()` must return a lowercase string

Contributing
------------

[](#contributing)

Contributions are welcome! Please:

- Fork the repository and create a feature branch
- Keep changes focused and follow the existing style
- Run `composer lint` before submitting
- Open a pull request and follow the guideline template

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please report any security issues directly to the maintainer via GitHub issues or email.

License
-------

[](#license)

The MIT License (MIT). See [LICENSE](LICENSE) for details.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance72

Regular maintenance activity

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~3 days

Total

2

Last Release

256d ago

### Community

Maintainers

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

---

Top Contributors

[![cjmellor](https://avatars.githubusercontent.com/u/1848476?v=4)](https://github.com/cjmellor "cjmellor (11 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![raphaelstolt](https://avatars.githubusercontent.com/u/48225?v=4)](https://github.com/raphaelstolt "raphaelstolt (1 commits)")

---

Tags

aiboostidelaravellaravelboost-ide-bundle

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cjmellor-boost-ide-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/cjmellor-boost-ide-bundle/health.svg)](https://phpackages.com/packages/cjmellor-boost-ide-bundle)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[vinkius-labs/laravel-page-speed

Laravel Page Speed

2.5k12.5k1](/packages/vinkius-labs-laravel-page-speed)[emargareten/inertia-modal

Inertia Modal is a Laravel package that lets you implement backend-driven modal dialogs for Inertia apps.

90142.9k](/packages/emargareten-inertia-modal)[wearepixel/laravel-cart

A cart implementation for Laravel

1374.8k](/packages/wearepixel-laravel-cart)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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