-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 937 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 937 Bytes
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
{
"name": "soukicz/llm",
"description": "LLM client with support for cache, tools and async requests",
"keywords": ["llm", "ai", "openai", "anthropic"],
"type": "library",
"license": ["BSD-3-Clause"],
"autoload": {
"psr-4": {
"Soukicz\\Llm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Soukicz\\Llm\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Petr Soukup",
"email": "soukup@simplia.cz"
}
],
"require": {
"php": ">=8.3",
"psr/http-message": "^1.1 || ^2.0",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/promises": "^2.0",
"guzzlehttp/psr7": "^2.7",
"ext-zlib": "*",
"swaggest/json-schema": "^0.12.43",
"ramsey/uuid": "^4.8"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5"
}
}