-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
54 lines (54 loc) · 1.4 KB
/
composer.json
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
{
"name": "kambo/langchain",
"description": " ⚡ Building applications with LLMs through composability in PHP ⚡ ",
"keywords": [
"kambo",
"langchain"
],
"homepage": "https://github.com/kambo/langchain",
"license": "MIT",
"authors": [
{
"name": "Bohuslav Šimek",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"openai-php/client": "^0.3.5",
"psr/simple-cache": "^3.0",
"ramsey/uuid": "^4.7",
"stechstudio/backoff": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.8"
},
"autoload": {
"psr-4": {
"Kambo\\Langchain\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kambo\\Langchain\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"format": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}