-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.43 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.43 KB
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
{
"name": "frosh/ai",
"description": "Provider-agnostic AI toolkit for Shopware (features, abilities, OpenAI-compatible clients)",
"version": "0.1.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.com"
}
],
"require": {
"shopware/core": "~6.7.0 || ~6.8.0"
},
"autoload": {
"psr-4": {
"Frosh\\AI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Frosh\\AI\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "Frosh\\AI\\FroshAI",
"label": {
"de-DE": "Frosh AI",
"en-GB": "Frosh AI"
},
"description": {
"de-DE": "KI-Toolkit f\u00fcr Shopware: Provider-Abstraktion, Model-Katalog und erweiterbare AI-Features.",
"en-GB": "AI toolkit for Shopware: provider abstraction, model catalog, and extensible AI features."
},
"manufacturerLink": {
"de-DE": "https://friendsofshopware.com",
"en-GB": "https://friendsofshopware.com"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshAI/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshAI/issues"
}
},
"require-dev": {
"phpunit/phpunit": "^11.5"
}
}