PHPackages                             zeevx/laravel-brimble-sandbox - 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. [API Development](/categories/api)
4. /
5. zeevx/laravel-brimble-sandbox

ActiveLibrary[API Development](/categories/api)

zeevx/laravel-brimble-sandbox
=============================

Laravel integration for the Brimble Sandbox PHP SDK: config, container binding, facade, and Artisan commands.

v0.1.0(1mo ago)047MITPHPPHP ^8.2CI passing

Since Jul 5Pushed 1mo agoCompare

[ Source](https://github.com/zeevx/laravel-brimble-sandbox)[ Packagist](https://packagist.org/packages/zeevx/laravel-brimble-sandbox)[ Docs](https://github.com/zeevx/laravel-brimble-sandbox)[ RSS](/packages/zeevx-laravel-brimble-sandbox/feed)WikiDiscussions main Synced 1w ago

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

Laravel Brimble Sandbox
=======================

[](#laravel-brimble-sandbox)

Laravel integration for [`zeevx/php-brimble-sandbox`](https://github.com/zeevx/php-brimble-sandbox): a config file, a container binding, a facade, and Artisan commands. All the API logic lives in the core package; this is the glue.

Install
-------

[](#install)

```
composer require zeevx/laravel-brimble-sandbox
```

The service provider and `BrimbleSandbox` facade are auto-discovered. Publish the config if you want to tweak defaults:

```
php artisan vendor:publish --tag=brimble-sandbox-config
```

Configure
---------

[](#configure)

Set your key in `.env`:

```
BRIMBLE_SANDBOX_KEY=your-api-key
```

Optional overrides (shown with defaults):

```
BRIMBLE_SANDBOX_BASE_URL=https://sandbox.brimble.io
BRIMBLE_SANDBOX_TIMEOUT=90
BRIMBLE_SANDBOX_MAX_RETRIES=2
```

Usage
-----

[](#usage)

Resolve the client from the container, inject it, or use the facade. All three give you the same configured `Zeevx\BrimbleSandbox\Sandbox` instance.

```
use Zeevx\LaravelBrimbleSandbox\Facades\BrimbleSandbox;
use Zeevx\BrimbleSandbox\Requests\CreateSandbox;
use Zeevx\BrimbleSandbox\Requests\ExecInput;

$sb = BrimbleSandbox::sandboxes()->create(new CreateSandbox(template: 'node-22'));

echo $sb->exec(new ExecInput('node -v'))->stdout;

$sb->destroy();
```

Dependency injection:

```
use Zeevx\BrimbleSandbox\Sandbox;

public function __construct(private readonly Sandbox $brimble) {}
```

See the [core package README](https://github.com/zeevx/php-brimble-sandbox) for the full API (exec/code, streaming, files, snapshots, volumes, pagination, error handling).

Artisan commands
----------------

[](#artisan-commands)

```
# List your sandboxes
php artisan brimble:sandbox:list --page=1 --limit=15

# Run a shell command inside a sandbox (add --stream for live output)
php artisan brimble:sandbox:exec {id} "npm test" --stream

# Destroy a sandbox (add --force to skip the prompt)
php artisan brimble:sandbox:destroy {id}
```

Development
-----------

[](#development)

```
composer test      # Pest + Testbench
composer lint      # Pint
composer analyse   # PHPStan (Larastan)
```

License
-------

[](#license)

MIT

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance90

Actively maintained with recent releases

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

48d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/89e891f62dbee3c7f6979348f5e75af5b72267a9160456918e63f80092281ff4?d=identicon)[zeevx](/maintainers/zeevx)

---

Top Contributors

[![zeevx](https://avatars.githubusercontent.com/u/44035730?v=4)](https://github.com/zeevx "zeevx (2 commits)")

---

Tags

apilaravelsdksandboxbrimble

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/zeevx-laravel-brimble-sandbox/health.svg)

```
[![Health](https://phpackages.com/badges/zeevx-laravel-brimble-sandbox/health.svg)](https://phpackages.com/packages/zeevx-laravel-brimble-sandbox)
```

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

1.1k4.6M331](/packages/laravel-ai)[laravel/sail

Docker files for running a basic Laravel application.

1.9k212.4M1.5k](/packages/laravel-sail)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

79227.1M238](/packages/laravel-mcp)[propaganistas/laravel-disposable-email

Disposable email validator

6023.2M7](/packages/propaganistas-laravel-disposable-email)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

731189.9k16](/packages/tallstackui-tallstackui)[illuminate/queue

The Illuminate Queue package.

20433.0M1.8k](/packages/illuminate-queue)

PHPackages © 2026

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