Download the PHP package mindum/laravel without Composer
On this page you can find all versions of the php package mindum/laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel
Mindum for Laravel
The agent layer for Laravel — auto-generated MCP tools from your codebase.
Install Mindum into any Laravel app to give your end users a conversational interface to your app's business logic. Mindum scans your models, services, controllers, jobs, and repositories, and uses AI to automatically generate MCP tool definitions — no manual tool writing required.
Status: early access. Active development — see
CHANGELOG.mdfor what's shipped.
Requirements
- PHP 8.2+
- Laravel 10+ (CI-tested on 10, 12, and 13)
- A Mindum account (mindum.dev) for the API key
- An Anthropic API key (only required during local
mindum:chattesting; the hosted orchestrator handles it in production)
Install
The install command scans your codebase, sends a structural manifest (metadata only — never raw source code) to the Mindum API, receives back AI-generated MCP tool definitions, and registers them with laravel/mcp.
Configuration
Publish the config file:
Then set in your .env:
See config/mindum.php for all available options (scan paths, exclusions, tool output directory, MCP endpoint path).
Commands
| Command | Purpose |
|---|---|
mindum:install |
Full first-time setup: scan, analyze, register tools |
mindum:rescan |
Force re-analysis of the entire codebase |
mindum:status |
Show tool count, sync status, connection health |
mindum:chat |
Interactive terminal chat for testing tools locally |
What Mindum scans
The SDK extracts structural metadata (class names, method signatures, type hints, docblocks, validation rules) from:
- Eloquent models (fillable, casts, relationships, soft deletes, searchable traits)
- Action classes (
extends BaseServicepattern or similar) - Controllers in
app/Http/Controllers/(with form request resolution + inlinevalidate()parsing) - Jobs in
app/Jobs/(constructor-based input, sync dispatch only) - Repositories in
**/Repositories/(Prettus L5-style inherited methods + concrete custom methods)
Modular apps (like Bagisto with packages/Webkul/*/src/) are supported via scan_paths config.
Security
Mindum sends only structural metadata to its API — class names, method signatures, type hints, docblocks, and validation rules. Your actual source code never leaves your server. Tool execution always runs locally in your Laravel app.
A detailed security policy (SECURITY.md) is coming soon.
License
MIT. See LICENSE.
Built with love for the Laravel community.
All versions of laravel with dependencies
illuminate/console Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/contracts Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/filesystem Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/http Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/support Version ^9.0|^10.0|^11.0|^12.0|^13.0
nikic/php-parser Version ^5.0