-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.04 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
{
"name": "assistant-engine/open-functions-github",
"description": "The GitHub Open Function package integrates GitHub with large language models (LLMs) using the Open Functions architecture, enabling streamlined repository management and file operations.",
"homepage": "https://github.com/AssistantEngine/open-functions-github",
"license": "MIT",
"authors": [
{
"name": "Florian Weigang",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"AssistantEngine\\OpenFunctions\\Github\\": "src/"
}
},
"require": {
"guzzlehttp/guzzle": "^7.9",
"knplabs/github-api": "^3.16",
"assistant-engine/open-functions-core": "^1.0"
},
"require-dev": {
"openai-php/client": "^0.10.3",
"vlucas/phpdotenv": "^5.6"
}
}