dij-digital/langfuse-laravel
Composer 安装命令:
composer require dij-digital/langfuse-laravel
包简介
This is my package langfuse-laravel
README 文档
README
This package provides a wrapper around the langfuse-php package, allowing you to easily integrate Langfuse into your Laravel applications. It uses as few dependencies as possible.
Features
- Tracing - Create traces, spans and generations that send directly to the Langfuse API
- Prompts - Fetch, compile and create text and chat prompts with fallback support
- Facade with direct access to
prompt()andingestion()methods
Requires PHP 8.3 or PHP 8.4 in combination with Laravel 11 or Laravel 12
Installation
composer require dij-digital/langfuse-laravel
Configuration
Add the following environment variables to your .env file:
LANGFUSE_BASE_URI=https://cloud.langfuse.com LANGFUSE_PUBLIC_KEY= LANGFUSE_SECRET_KEY= # Optional - defaults to config('app.env') LANGFUSE_ENVIRONMENT=
Publish the config file (optional):
php artisan vendor:publish --tag=langfuse-laravel-config
Usage
Tracing
Every call sends directly to the Langfuse API. No buffering, no flushing.
use DIJ\Langfuse\Laravel\Facades\Langfuse; // Create a trace $trace = Langfuse::ingestion()->trace(name: 'handle-request', userId: 'user-1', input: 'hello'); // Nest spans and generations under the trace $span = $trace->span(name: 'search'); $generation = $span->generation( input: 'prompt', output: 'response', name: 'llm', model: 'gpt-4o', ); // Update any object (sends immediately) $span->update(output: 'done', endTime: date('c')); $trace->update(output: 'final answer');
Prompts
use DIJ\Langfuse\Laravel\Facades\Langfuse; // Get and compile prompts Langfuse::prompt()->text('promptName', fallback: 'fallback text')->compile(['key' => 'value']); Langfuse::prompt()->chat('chatName', fallback: [['role' => 'user', 'content' => 'fallback']])->compile(['key' => 'value']); // List all prompts (auto-paginated Generator) foreach (Langfuse::prompt()->list() as $item) { echo $item->name; } // Create a prompt Langfuse::prompt()->create('promptName', 'text', PromptType::TEXT); // Update prompt labels Langfuse::prompt()->update(promptName: 'promptName', version: 1, labels: ['production']);
Testing
Use the fake() method to mock HTTP responses. The langfuse-php package ships with testing response helpers that provide sensible defaults — just override the fields you care about:
use DIJ\Langfuse\Laravel\Facades\Langfuse; use DIJ\Langfuse\PHP\Testing\Responses\GetPromptResponse; Langfuse::fake([ new GetPromptResponse(data: [ 'name' => 'my-prompt', 'type' => 'text', 'prompt' => 'Hello {{name}}', ]), ]); $prompt = Langfuse::prompt()->text('my-prompt');
Available test response helpers in DIJ\Langfuse\PHP\Testing\Responses:
GetPromptResponse— text prompt fetchGetChatPromptResponse— chat prompt fetchNoPromptFoundResponse— 404 prompt not foundPostPromptResponse— text prompt creationPostChatPromptResponse— chat prompt creationPatchPromptLabelsResponse— prompt label updateGetPromptListPageOneResponse— first page of prompt listGetPromptListPageTwoResponse— second page of prompt list
Responses are consumed sequentially (Guzzle MockHandler), so the order of responses must match the order of HTTP calls your code makes.
Development
composer test # Run tests composer codestyle # Format, refactor and analyse
Ingestion
use DIJ\Langfuse\Laravel\Facades\Langfuse; // Creates a trace and a generation visible in Langfuse UI $traceId = 'trace-id-123'; Langfuse::ingestion()->trace( input: 'prompt text', output: null, traceId: $traceId, name: 'name', sessionId: null, metadata: ['key' => 'value'] ); Langfuse::ingestion()->generation( input: 'prompt text', output: 'model output', traceId: $traceId, name: 'name', sessionId: null, promptName: 'promptName', promptVersion: 1, model: 'gpt-4o', modelParameters: ['temperature' => 0.7], metadata: ['key' => 'value'] );
Langfuse Laravel was created by Tycho Engberink and is maintained by DIJ Digital under the MIT license.
dij-digital/langfuse-laravel 适用场景与选型建议
dij-digital/langfuse-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.94k 次下载、GitHub Stars 达 10, 最近一次更新时间为 2025 年 06 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「langfuse」 「DIJ Digital」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dij-digital/langfuse-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dij-digital/langfuse-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dij-digital/langfuse-laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP SDK for the LangFuse API
This package provides the database factory experience to fake Http calls in your testsuite
A langfuse wrapper for PHP
A Laravel package for integrating Deepgram’s AI voice services
Seamless integration of Langfuse observability for Laravel and Laravel Prism.
Alfabank REST API integration
统计信息
- 总下载量: 4.94k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-06-25