PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Laravel MCP SDK   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content typex: text/plain
Description: Auxiliary data
Class: Laravel MCP SDK
Create tools to process user requests with prompts
Author: By
Last change:
Date: 2 days ago
Size: 1,987 bytes
 

Contents

Class file image Download
{ "name": "laravelmcp/mcp", "description": "Laravel implementation of the Model Context Protocol (MCP) SDK", "type": "library", "license": "MIT", "keywords": [ "laravel", "mcp", "model-context-protocol", "sdk" ], "homepage": "https://github.com/laravelmcp/mcp", "support": { "issues": "https://github.com/laravelmcp/mcp/issues", "source": "https://github.com/laravelmcp/mcp" }, "authors": [ { "name": "Mohamed Abdelmenem", "email": "[email protected]" } ], "require": { "php": "^8.1", "cboden/ratchet": "^0.4.4", "guzzlehttp/guzzle": "^7.0", "illuminate/support": "^10.0", "ratchet/pawl": "^0.4.3", "react/http": "^1.9", "react/socket": "^1.12" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.49", "mockery/mockery": "^1.6", "orchestra/testbench": "^8.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-mockery": "^1.1", "phpunit/phpunit": "^10.0", "nette/php-generator": "^4.1", "squizlabs/php_codesniffer": "^3.8" }, "autoload": { "psr-4": { "LaravelMCP\\MCP\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "extra": { "laravel": { "providers": [ "LaravelMCP\\MCP\\MCPServiceProvider" ], "aliases": { "MCP": "LaravelMCP\\MCP\\Facades\\MCP" } } }, "config": { "sort-packages": true, "allow-plugins": { "php-http/discovery": true } }, "scripts": { "docs": "php scripts/generate-docs.php", "test": "phpunit", "cs": "php-cs-fixer fix", "stan": "phpstan analyse" }, "minimum-stability": "dev", "prefer-stable": true }