-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "instride/pimcore-ai-tools",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "AI Bundle for Pimcore",
"keywords": [
"pimcore",
"pimcore-bundle"
],
"homepage": "https://github.com/instride-ch/pimcore-ai-tools",
"minimum-stability": "dev",
"authors": [
{
"name": "instride AG",
"email": "[email protected]",
"homepage": "https://instride.ch",
"role": "Digital Agency"
}
],
"require": {
"php": ">=8.2",
"pimcore/pimcore": "^11",
"openai-php/client": "^v0.10",
"ferranfg/midjourney-php": "^v2.2"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"symplify/easy-coding-standard": "^12.2"
},
"autoload": {
"psr-4": {
"Instride\\Bundle\\PimcoreAiToolsBundle\\": "src/PimcoreAiToolsBundle/"
}
},
"extra": {
"pimcore": {
"bundles": [
"Instride\\Bundle\\PimcoreAiToolsBundle\\PimcoreAiToolsBundle"
]
},
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}