From de1bc5512ee64d41a16f7b73b1d06bced93c73a9 Mon Sep 17 00:00:00 2001 From: Marcello Duarte Date: Mon, 27 Jul 2026 15:24:18 +0100 Subject: [PATCH] Fix the package name in the installation guide The guide told readers to run composer require papi-ai/core, which is not a published package. It is papi-ai/papi-core. Also lists the framework bridges and the optional effect and rtk packages, which the page never mentioned. --- docs/installation.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index e248466..960bc80 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -3,7 +3,7 @@ Install the core package and the provider(s) you need: ```bash -composer require papi-ai/core +composer require papi-ai/papi-core # Pick your provider(s) composer require papi-ai/anthropic # Claude @@ -24,6 +24,20 @@ For text-to-speech: composer require papi-ai/elevenlabs # ElevenLabs TTS ``` +Framework bridges, if you are not using Papi standalone: + +```bash +composer require papi-ai/laravel # Laravel service provider, config, facade +composer require papi-ai/symfony # Symfony bundle, DI, Messenger +``` + +Optional extras: + +```bash +composer require papi-ai/effect # Async video and fiber-based execution +composer require papi-ai/rtk # Token-optimisation proxy (needs the rtk binary) +``` + ## Requirements - PHP 8.2+