Files
archived-ai-demo/composer.json
Christopher Hertel 2823c6efd4 Bump versions for v0.6
2026-03-05 00:27:55 +01:00

132 lines
3.9 KiB
JSON

{
"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"
}
}
}