-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.92 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "lunetics/llm-cost-tracking-bundle",
"description": "Symfony bundle that tracks LLM API costs and displays them in the Web Debug Toolbar and Profiler",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["symfony", "llm", "cost", "tracking", "profiler", "toolbar", "ai"],
"homepage": "https://github.com/lunetics/llm-cost-tracking-bundle",
"authors": [
{
"name": "Lunetics",
"homepage": "https://github.com/lunetics"
}
],
"support": {
"issues": "https://github.com/lunetics/llm-cost-tracking-bundle/issues",
"source": "https://github.com/lunetics/llm-cost-tracking-bundle"
},
"require": {
"php": ">=8.2",
"symfony/ai-bundle": ">=0.4.0 <2.0.0",
"symfony/ai-platform": ">=0.4.0 <2.0.0",
"symfony/cache": "^7.0|^8.0",
"symfony/config": "^7.0|^8.0",
"symfony/dependency-injection": "^7.0|^8.0",
"symfony/framework-bundle": "^7.0|^8.0",
"symfony/http-client": "^7.0|^8.0",
"symfony/http-kernel": "^7.0|^8.0",
"symfony/twig-bundle": "^7.0|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.5.13",
"symfony/web-profiler-bundle": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Lunetics\\LlmCostTrackingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lunetics\\LlmCostTrackingBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.1-dev"
}
},
"config": {
"sort-packages": true,
"audit": {
"block-insecure": false
}
}
}