-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.63 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "josbeir/cakephp-synapse",
"description": "CakePHP MCP Server Plugin - Expose CakePHP functionality via Model Context Protocol",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"mcp",
"server",
"synapse"
],
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^5.2",
"mcp/sdk": "^0.4",
"ext-sqlite3": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.1.3 || ^12.0",
"cakephp/plugin-installer": "^2.0.1",
"cakephp/cakephp-codesniffer": "^5.2",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.1"
},
"autoload": {
"psr-4": {
"Synapse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/test_app/src/",
"Synapse\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"lowest": "validate-prefer-lowest",
"test": "phpunit --colors=always",
"test-coverage": "export XDEBUG_MODE=coverage; phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml",
"phpstan": "phpstan analyse",
"cs-check": "phpcs --colors -p -s",
"cs-fix": "phpcbf --colors -p -s",
"rector-check": "rector --dry-run --ansi",
"rector-fix": "rector --ansi"
}
}