Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions demo/composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "symfony/ai-demo",
"type": "project",
"description": "Symfony AI Demo Application",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"type": "project",
"require": {
"php": ">=8.4",
"ext-ctype": "*",
Expand All @@ -15,30 +13,39 @@
"php-http/discovery": "^1.20",
"runtime/frankenphp-symfony": "^0.2.0",
"symfony/ai-bundle": "@dev",
"symfony/asset": "7.3.*",
"symfony/asset-mapper": "7.3.*",
"symfony/clock": "7.3.*",
"symfony/console": "7.3.*",
"symfony/css-selector": "7.3.*",
"symfony/dom-crawler": "7.3.*",
"symfony/dotenv": "7.3.*",
"symfony/asset": "~7.3.0",
"symfony/asset-mapper": "~7.3.0",
"symfony/clock": "~7.3.0",
"symfony/console": "~7.3.0",
"symfony/css-selector": "~7.3.0",
"symfony/dom-crawler": "~7.3.0",
"symfony/dotenv": "~7.3.0",
"symfony/flex": "^2.5",
"symfony/framework-bundle": "7.3.*",
"symfony/http-client": "7.3.*",
"symfony/framework-bundle": "~7.3.0",
"symfony/http-client": "~7.3.0",
"symfony/mcp-bundle": "@dev",
"symfony/monolog-bundle": "^3.10",
"symfony/runtime": "7.3.*",
"symfony/twig-bundle": "7.3.*",
"symfony/uid": "7.3.*",
"symfony/runtime": "~7.3.0",
"symfony/twig-bundle": "~7.3.0",
"symfony/uid": "~7.3.0",
"symfony/ux-icons": "^2.25",
"symfony/ux-live-component": "^2.25",
"symfony/ux-turbo": "^2.25",
"symfony/ux-typed": "^2.25",
"symfony/yaml": "7.3.*",
"symfony/yaml": "~7.3.0",
"twig/extra-bundle": "^3.21",
"twig/markdown-extra": "^3.21",
"twig/twig": "^3.21"
},
"require-dev": {
"php-cs-fixer/shim": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"symfony/browser-kit": "~7.3.0",
"symfony/debug-bundle": "~7.3.0",
"symfony/stopwatch": "~7.3.0",
"symfony/web-profiler-bundle": "~7.3.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
Expand All @@ -55,14 +62,17 @@
"conflict": {
"symfony/symfony": "*"
},
"require-dev": {
"php-cs-fixer/shim": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"symfony/browser-kit": "7.3.*",
"symfony/debug-bundle": "7.3.*",
"symfony/stopwatch": "7.3.*",
"symfony/web-profiler-bundle": "7.3.*"
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
Expand All @@ -78,16 +88,6 @@
"require": "7.3.*"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
Expand Down
24 changes: 12 additions & 12 deletions examples/composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "symfony/ai-examples",
"description": "Example scripts about using Symfony AI",
"type": "project",
"license": "MIT",
"type": "project",
"require": {
"ext-pdo": "*",
"async-aws/bedrock-runtime": "^1.1",
"codewithkyrian/chromadb-php": "^0.4.0",
"codewithkyrian/transformers": "^0.6.1",
"doctrine/dbal": "^3.3|^4.0",
"doctrine/dbal": "^3.3 || ^4.0",
"google/auth": "^1.47",
"mongodb/mongodb": "^2.1",
"mrmysql/youtube-transcript": "^0.0.5",
Expand All @@ -18,16 +18,16 @@
"symfony/ai-agent": "@dev",
"symfony/ai-platform": "@dev",
"symfony/ai-store": "@dev",
"symfony/cache": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/css-selector": "^6.4|^7.0",
"symfony/dom-crawler": "^6.4|^7.0",
"symfony/dotenv": "^6.4|^7.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/filesystem": "^6.4|^7.0",
"symfony/finder": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0"
"symfony/cache": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/css-selector": "^6.4 || ^7.0",
"symfony/dom-crawler": "^6.4 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/process": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
Expand Down
24 changes: 12 additions & 12 deletions src/agent/composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "symfony/ai-agent",
"type": "library",
"description": "PHP library for building agentic applications.",
"license": "MIT",
"type": "library",
"keywords": [
"ai",
"llm",
"agent"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
Expand All @@ -33,7 +33,7 @@
"symfony/type-info": "^7.2.3"
},
"require-dev": {
"mrmysql/youtube-transcript": "^v0.0.5",
"mrmysql/youtube-transcript": "^0.0.5",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5.13",
"symfony/ai-store": "@dev",
Expand All @@ -43,15 +43,6 @@
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1"
},
"config": {
"sort-packages": true
},
"extra": {
"thanks": {
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
}
},
"autoload": {
"psr-4": {
"Symfony\\AI\\Agent\\": "src/"
Expand All @@ -63,5 +54,14 @@
"Symfony\\AI\\Fixtures\\": "../../fixtures",
"Symfony\\AI\\PHPStan\\": "../../.phpstan/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"thanks": {
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
}
}
}
8 changes: 4 additions & 4 deletions src/ai-bundle/composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "symfony/ai-bundle",
"type": "symfony-bundle",
"description": "Integration bundle for Symfony AI components",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Christopher Hertel",
Expand Down Expand Up @@ -31,9 +31,6 @@
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/security-core": "^6.4 || ^7.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Symfony\\AI\\AiBundle\\": "src/"
Expand All @@ -44,5 +41,8 @@
"Symfony\\AI\\AiBundle\\Tests\\": "tests/",
"Symfony\\AI\\PHPStan\\": "../../.phpstan/"
}
},
"config": {
"sort-packages": true
}
}
28 changes: 14 additions & 14 deletions src/platform/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "symfony/ai-platform",
"type": "library",
"description": "PHP library for interacting with AI platform provider.",
"license": "MIT",
"type": "library",
"keywords": [
"ai",
"albert",
Expand All @@ -25,7 +26,6 @@
"vertexai",
"voyage"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
Expand Down Expand Up @@ -66,6 +66,18 @@
"symfony/process": "^6.4 || ^7.1",
"symfony/var-dumper": "^6.4 || ^7.1"
},
"autoload": {
"psr-4": {
"Symfony\\AI\\Platform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\AI\\Fixtures\\": "../../fixtures",
"Symfony\\AI\\PHPStan\\": "../../.phpstan/",
"Symfony\\AI\\Platform\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"codewithkyrian/platform-package-installer": true,
Expand All @@ -78,17 +90,5 @@
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
}
},
"autoload": {
"psr-4": {
"Symfony\\AI\\Platform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\AI\\Platform\\Tests\\": "tests/",
"Symfony\\AI\\Fixtures\\": "../../fixtures",
"Symfony\\AI\\PHPStan\\": "../../.phpstan/"
}
}
}
26 changes: 13 additions & 13 deletions src/store/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "symfony/ai-store",
"type": "library",
"description": "Low-level abstraction for storing and retrieving documents in a vector store.",
"license": "MIT",
"type": "library",
"keywords": [
"ai",
"azure",
Expand All @@ -20,7 +21,6 @@
"typesense",
"weaviate"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
Expand Down Expand Up @@ -49,27 +49,27 @@
"probots-io/pinecone-php": "^1.0",
"symfony/cache": "^7.3"
},
"config": {
"sort-packages": true
},
"conflict": {
"mongodb/mongodb": "<1.21"
},
"extra": {
"thanks": {
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
}
},
"autoload": {
"psr-4": {
"Symfony\\AI\\Store\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\AI\\Store\\Tests\\": "tests/",
"Symfony\\AI\\PHPStan\\": "../../.phpstan/"
"Symfony\\AI\\PHPStan\\": "../../.phpstan/",
"Symfony\\AI\\Store\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"thanks": {
"name": "symfony/ai",
"url": "https://github.com/symfony/ai"
}
}
}