From af0e3536ae5f922d0e2f263de92775a0266095c5 Mon Sep 17 00:00:00 2001 From: Vitalii Cherepanov Date: Wed, 16 Sep 2026 15:41:37 +0200 Subject: [PATCH] feat: add A2A Symfony bundle recipe (#2053) --- .../a2a-symfony-bundle/1.0/config/packages/a2a.yaml | 4 ++++ .../a2a-symfony-bundle/1.0/config/routes/a2a.yaml | 3 +++ vbcherepanov/a2a-symfony-bundle/1.0/manifest.json | 8 ++++++++ 3 files changed, 15 insertions(+) create mode 100644 vbcherepanov/a2a-symfony-bundle/1.0/config/packages/a2a.yaml create mode 100644 vbcherepanov/a2a-symfony-bundle/1.0/config/routes/a2a.yaml create mode 100644 vbcherepanov/a2a-symfony-bundle/1.0/manifest.json diff --git a/vbcherepanov/a2a-symfony-bundle/1.0/config/packages/a2a.yaml b/vbcherepanov/a2a-symfony-bundle/1.0/config/packages/a2a.yaml new file mode 100644 index 00000000..e0b3da0a --- /dev/null +++ b/vbcherepanov/a2a-symfony-bundle/1.0/config/packages/a2a.yaml @@ -0,0 +1,4 @@ +# a2a: +# executor: App\Agent\MyExecutor +# card_file: '%kernel.project_dir%/config/agent-card.json' +# public_url: '%env(A2A_PUBLIC_URL)%' diff --git a/vbcherepanov/a2a-symfony-bundle/1.0/config/routes/a2a.yaml b/vbcherepanov/a2a-symfony-bundle/1.0/config/routes/a2a.yaml new file mode 100644 index 00000000..3388c2d5 --- /dev/null +++ b/vbcherepanov/a2a-symfony-bundle/1.0/config/routes/a2a.yaml @@ -0,0 +1,3 @@ +a2a: + resource: . + type: a2a diff --git a/vbcherepanov/a2a-symfony-bundle/1.0/manifest.json b/vbcherepanov/a2a-symfony-bundle/1.0/manifest.json new file mode 100644 index 00000000..d3976624 --- /dev/null +++ b/vbcherepanov/a2a-symfony-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "A2A\\Bundle\\A2ABundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}