-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "inchoo/magento-bricklayer",
"description": "AI-assisted development toolkit for Magento 2 - MCP server providing introspection tools, code generation, and Magento-specific knowledge for AI coding agents",
"type": "library",
"license": "MIT",
"keywords": [
"magento",
"magento2",
"ai",
"mcp",
"model-context-protocol",
"development",
"toolkit",
"claude",
"cursor",
"copilot",
"code-generation"
],
"authors": [
{
"name": "Inchoo",
"email": "developer@inchoo.net",
"homepage": "https://inchoo.net"
}
],
"version": "1.17.0",
"require": {
"php": ">=8.1",
"mcp/sdk": "^0.3 || ^1.0",
"psy/psysh": "^0.12",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Inchoo\\MagentoBricklayer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inchoo\\MagentoBricklayer\\Tests\\": "tests/"
}
},
"bin": [
"bin/bricklayer",
"bin/bricklayer-mcp"
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"phpstan": "phpstan analyse src tests --level=8",
"phpcs": "phpcs --standard=PSR12 src tests",
"phpcbf": "phpcbf --standard=PSR12 src tests",
"check": [
"@phpcs",
"@phpstan",
"@test"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}