Download the PHP package nexvia-solutions/mapin without Composer

On this page you can find all versions of the php package nexvia-solutions/mapin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mapin

Mapin

A queryable code graph for Laravel applications: dependency injection, container bindings, routes, views, Eloquent relations, Markdown docs and JavaScript-to-route calls, connected the way a generic tree-sitter-based tool cannot see.

Español

Why

Generic code graph tools only see what is visible in a single file's own syntax. Most of the wiring that actually matters in a real Laravel application happens through the container, through strings (route('name'), view('name')), and through convention (hasMany, $listen, Route::get), none of which a syntax-only parser ever sees. Measured on a real application of about 900 PHP files, a generic tree-sitter extractor captured static calls and nothing else: zero edges for dependency injection, new, member calls, routes, views, Blade includes or Eloquent relations. Mapin exists to cover exactly that gap, for an AI coding agent asking "what breaks if I change this" over MCP, or a developer asking the same thing from the CLI - and to say so honestly when it does not know: found: false with labelled suggestions, never a look-alike match dressed up as the real answer.

Requirements

Laravel 13 support is verified against a real application, not yet by the automated test suite - orchestra/testbench, the package this project's own tests use to simulate a Laravel application, has no release supporting Laravel 13 yet as of this writing. Runtime code does not depend on Testbench at all; only this package's own dev-time test suite does. See SPEC.md section 1.14 for the full, current detail.

Install

This package requires laravel/mcp, which as of this writing has no stable release yet (only v1.0.0-beta.1). If your app uses Composer's default minimum-stability: stable - almost every Laravel app does - composer require will refuse to resolve it until you allow pre-release versions for the packages that need them:

prefer-stable: true keeps every other dependency on its latest stable release; it only lets laravel/mcp (and anything else without a stable release) resolve to a pre-release instead of failing outright. This is a real, ongoing requirement tied to laravel/mcp's own release status, not a one-time setup step you can skip once installed - see SPEC.md section 1.14 for how this was found.

The service provider registers itself automatically (Laravel package auto-discovery). Publish the config if you want to change the defaults - indexed paths, storage location, the semantic layer's LLM driver, community detection's hub percentile:

Quick start

mapin:doctor's unresolved_ratio check can fail right after install on an app with little code of its own yet (a fresh skeleton, or a new module) - most calls it finds point into the framework rather than your own classes, so there is not much to resolve against. It gets more meaningful as your app grows; on a real, mature application it is a genuine signal worth investigating.

Every command supports --json. Every answer carries a graph block reporting how stale it might be (the commit the graph was built from, and how many files changed since) - never a silent guess about how current the answer is.

Keeping the graph current is opt-in, not automatic - run this once per checkout to rebuild it in the background after every commit and merge:

Use it from Claude Code, Cursor, or any MCP client

starts a stdio MCP server exposing every query as a tool, driven by the exact same code the CLI uses - an MCP answer and a mapin:query answer to the same question never diverge. See docs/MCP.md for client configuration (Claude Code's .mcp.json, Cursor's .cursor/mcp.json, including the Docker-exec variant for a containerized application).

What it builds

Every query tool is listed in docs/MCP.md; the full behavioral contract, every node and edge type, and the reasoning behind each design decision live in SPEC.md.

Boundaries this package holds itself to

The full list, with the reasoning behind each one, is in SPEC.md section 13.

Documentation

License

MIT. See LICENSE.


All versions of mapin with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-pdo Version *
ext-sqlite3 Version *
illuminate/console Version ^11.45|^12.0|^13.0
illuminate/container Version ^11.45|^12.0|^13.0
illuminate/contracts Version ^11.45|^12.0|^13.0
illuminate/routing Version ^11.45|^12.0|^13.0
illuminate/support Version ^11.45|^12.0|^13.0
laravel/mcp Version ^1.0.0-beta.1
nikic/php-parser Version ^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nexvia-solutions/mapin contains the following files

Loading the files please wait ...