|
| 1 | +{ |
| 2 | + "name": "ctx/mcp-server", |
| 3 | + "description": "MCP Server for CTX framework", |
| 4 | + "keywords": [], |
| 5 | + "type": "library", |
| 6 | + "license": "MIT", |
| 7 | + "authors": [ |
| 8 | + { |
| 9 | + "name": "Pavel Buchnev", |
| 10 | + |
| 11 | + } |
| 12 | + ], |
| 13 | + "require": { |
| 14 | + "php": ">=8.3", |
| 15 | + "guzzlehttp/guzzle": "^7.0", |
| 16 | + "laminas/laminas-diactoros": "^3.5", |
| 17 | + "league/route": "^6.2", |
| 18 | + "logiscape/mcp-sdk-php": "^1.0", |
| 19 | + "psr-discovery/http-client-implementations": "^1.0", |
| 20 | + "psr-discovery/http-factory-implementations": "^1.0", |
| 21 | + "psr/http-client": "^1.0", |
| 22 | + "psr/http-factory": "^1.0", |
| 23 | + "spiral/boot": "^3.15", |
| 24 | + "spiral/config": "^3.15", |
| 25 | + "spiral/console": "^3.15", |
| 26 | + "spiral/files": "^3.15", |
| 27 | + "spiral/json-schema-generator": "^2.1", |
| 28 | + "cuyz/valinor": "^1.7" |
| 29 | + }, |
| 30 | + "require-dev": { |
| 31 | + "spiral/code-style": "^2.2", |
| 32 | + "phpunit/phpunit": "^10.5", |
| 33 | + "rector/rector": "^2.1", |
| 34 | + "vimeo/psalm": "^6.0" |
| 35 | + }, |
| 36 | + "autoload": { |
| 37 | + "psr-4": { |
| 38 | + "Butschster\\ContextGenerator\\McpServer\\": "src/" |
| 39 | + } |
| 40 | + }, |
| 41 | + "autoload-dev": { |
| 42 | + "psr-4": { |
| 43 | + "Tests\\": "tests" |
| 44 | + } |
| 45 | + }, |
| 46 | + "scripts": { |
| 47 | + "cs-check": "vendor/bin/php-cs-fixer fix --dry-run", |
| 48 | + "cs-fix": "vendor/bin/php-cs-fixer fix", |
| 49 | + "psalm": "vendor/bin/psalm --config=psalm.xml ./src", |
| 50 | + "psalm:ci": "vendor/bin/psalm --config=psalm.xml ./src --output-format=github --shepherd --show-info=false --stats --threads=4 --no-cache", |
| 51 | + "refactor": "rector process --config=rector.php", |
| 52 | + "refactor:ci": "rector process --config=rector.php --dry-run --ansi", |
| 53 | + "test": "vendor/bin/phpunit", |
| 54 | + "test:cc": [ |
| 55 | + "@putenv XDEBUG_MODE=coverage", |
| 56 | + "phpunit --coverage-clover=.build/phpunit/logs/clover.xml --color=always" |
| 57 | + ], |
| 58 | + "cs:fix": [ |
| 59 | + "@cs-fix", |
| 60 | + "@refactor" |
| 61 | + ], |
| 62 | + "lint": [ |
| 63 | + "@cs-check", |
| 64 | + "@refactor:ci", |
| 65 | + "@psalm", |
| 66 | + "@test" |
| 67 | + ] |
| 68 | + }, |
| 69 | + "config": { |
| 70 | + "sort-packages": true |
| 71 | + }, |
| 72 | + "minimum-stability": "dev", |
| 73 | + "prefer-stable": true |
| 74 | +} |
0 commit comments