This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-mcp/composer.json
Snider 5eea244ef3
Some checks failed
CI / PHP 8.3 (push) Failing after 2s
CI / PHP 8.4 (push) Failing after 2s
feat: rename package to lthn/php-mcp for Packagist
2026-03-09 18:00:02 +00:00

40 lines
884 B
JSON

{
"name": "lthn/php-mcp",
"description": "MCP (Model Context Protocol) tools module for Core PHP framework",
"keywords": [
"laravel",
"mcp",
"ai",
"tools",
"claude"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"lthn/php": "*"
},
"autoload": {
"psr-4": {
"Core\\Mcp\\": "src/Mcp/",
"Core\\Website\\Mcp\\": "src/Website/Mcp/",
"Core\\Front\\Mcp\\": "src/Front/Mcp/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mcp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Front\\Mcp\\Boot"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"replace": {
"core/php-mcp": "self.version"
}
}