-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.05 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
{
"name": "symfony/ai-mate",
"description": "AI development assistant MCP server for Symfony projects",
"license": "MIT",
"type": "library",
"keywords": [
"ai",
"mcp",
"model-context-protocol",
"symfony",
"debug",
"development",
"dev"
],
"authors": [
{
"name": "Johannes Wachter",
"email": "johannes@sulu.io"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"bin": [
"bin/mate"
],
"require": {
"php": ">=8.2",
"mcp/sdk": "^0.5",
"psr/log": "^2.0|^3.0",
"symfony/config": "^5.4|^6.4|^7.3|^8.0",
"symfony/console": "^5.4|^6.4|^7.3|^8.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.3|^8.0",
"symfony/ai-mate-composer-plugin": "^0.9",
"symfony/finder": "^5.4|^6.4|^7.3|^8.0"
},
"require-dev": {
"ext-simplexml": "*",
"helgesverre/toon": "^3.1",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5.53",
"symfony/dotenv": "^5.4|^6.4|^7.3|^8.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Symfony\\AI\\Mate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\AI\\PHPStan\\": "../../.phpstan/",
"Symfony\\AI\\Mate\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
},
"extra": {
"thanks": {
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
},
"ai-mate": {
"scan-dirs": [
"src/Capability"
],
"instructions": "INSTRUCTIONS.md"
}
}
}