-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "llm-agents/app",
"type": "project",
"license": "MIT",
"description": "Lang chain service",
"require": {
"php": ">=8.2",
"ext-mbstring": "*",
"ext-sockets": "*",
"cycle/entity-behavior": "^1.2",
"guzzlehttp/guzzle": "^7.0",
"internal/dload": "^0.2.2",
"llm-agents/agent-site-status-checker": "^1.1",
"llm-agents/agent-smart-home-control": "^1.1",
"llm-agents/agent-symfony-console": "^1.1",
"llm-agents/agents": "^1.5",
"llm-agents/cli-chat": "^1.4",
"llm-agents/json-schema-mapper": "^1.0",
"llm-agents/openai-client": "^1.3",
"llm-agents/prompt-generator": "^1.2",
"nesbot/carbon": "^3.4",
"nyholm/psr7": "^1.8",
"openai-php/client": "^0.10.1",
"spiral-packages/league-event": "^1.0",
"spiral/cycle-bridge": "^2.9",
"spiral/framework": "^3.14",
"spiral/roadrunner-bridge": "^4.0"
},
"require-dev": {
"buggregator/trap": "^1.7",
"vimeo/psalm": "^5.9",
"spiral/roadrunner-cli": "^2.6",
"spiral/testing": "^2.3"
},
"autoload": {
"psr-4": {
"App\\": "app/src",
"Database\\": "app/database"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"post-create-project-cmd": [
"php app.php encrypt:key -m .env",
"php app.php configure --quiet",
"rr get-binary --quiet",
"composer dump-autoload"
],
"rr:download": "rr get-binary",
"rr:download-protoc": "rr download-protoc-binary",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"psalm:config": "psalm"
},
"minimum-stability": "dev",
"prefer-stable": true
}