-
-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathcomposer.json
More file actions
131 lines (131 loc) · 3.9 KB
/
composer.json
File metadata and controls
131 lines (131 loc) · 3.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "symfony/ai-demo",
"description": "Symfony AI Demo Application",
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.4",
"ext-ctype": "*",
"ext-gd": "*",
"ext-iconv": "*",
"league/commonmark": "^2.7.1",
"mrmysql/youtube-transcript": "^0.0.5",
"nyholm/psr7": "^1.8",
"php-http/discovery": "^1.20",
"symfony/ai-agent": "^0.6",
"symfony/ai-bundle": "^0.6",
"symfony/ai-chat": "^0.6",
"symfony/ai-chroma-db-store": "^0.6",
"symfony/ai-clock-tool": "^0.6",
"symfony/ai-hugging-face-platform": "^0.6",
"symfony/ai-open-ai-platform": "^0.6",
"symfony/ai-similarity-search-tool": "^0.6",
"symfony/ai-store": "^0.6",
"symfony/ai-wikipedia-tool": "^0.6",
"symfony/asset": "^8.0",
"symfony/asset-mapper": "^8.0",
"symfony/config": "^8.0",
"symfony/console": "^8.0",
"symfony/dotenv": "^8.0",
"symfony/flex": "^2.10",
"symfony/form": "^8.0",
"symfony/framework-bundle": "^8.0",
"symfony/http-client": "^8.0",
"symfony/mailer": "^8.0",
"symfony/mcp-bundle": "^0.6",
"symfony/mime": "^8.0",
"symfony/monolog-bundle": "^4.0",
"symfony/runtime": "^8.0",
"symfony/twig-bundle": "^8.0",
"symfony/translation": "^8.0",
"symfony/uid": "^8.0",
"symfony/ux-dropzone": "^2.31",
"symfony/ux-icons": "^2.31",
"symfony/ux-live-component": "^2.31",
"symfony/ux-turbo": "^2.31",
"symfony/ux-typed": "^2.31",
"symfony/yaml": "^8.0",
"twig/extra-bundle": "^3.22.1",
"twig/markdown-extra": "^3.22",
"twig/twig": "^3.22"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.1",
"symfony/ai-mate": "^0.6",
"symfony/ai-monolog-mate-extension": "^0.6",
"symfony/ai-open-responses-platform": "^0.6",
"symfony/ai-symfony-mate-extension": "^0.6",
"symfony/browser-kit": "^8.0",
"symfony/css-selector": "^8.0",
"symfony/debug-bundle": "^8.0",
"symfony/stopwatch": "^8.0",
"symfony/web-profiler-bundle": "^8.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"App\\Mate\\": "mate/src/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.0.*"
},
"ai-mate": {
"extension": false,
"scan-dirs": [
"mate/src"
],
"includes": [
"mate/config.php"
]
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
}
}
}