-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.05 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-notion",
"description": "The Notion Open Function package integrates Notion with large language models (LLMs) using the Open Functions architecture, enabling streamlined repository management and file operations.",
"homepage": "https://github.com/AssistantEngine/open-functions-notion",
"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,
"require": {
"guzzlehttp/guzzle": "^7.9",
"vlucas/phpdotenv": "^5.6",
"mariosimao/notion-sdk-php": "^1.14",
"assistant-engine/open-functions-core": "^1.0"
},
"autoload": {
"psr-4": {
"AssistantEngine\\OpenFunctions\\Notion\\": "src/"
}
},
"require-dev": {
"filament/filament": "^3.3"
}
}