-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 955 Bytes
/
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
{
"name": "boxblinkracer/shopware-ai-demodata",
"description": "AI Demo Data",
"version": "v1.6.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"extra": {
"shopware-plugin-class": "AIDemoData\\AIDemoData",
"author": "Christian Dangl",
"label": {
"en-GB": "AI Demo Data"
}
},
"require": {
"php": ">= 8.1",
"orhanerday/open-ai": "^5.1",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^2.18",
"shopware/core": ">=6.4.0",
"shopware/administration": ">=6.4.0",
"shopware/storefront": ">=6.4.0"
},
"autoload": {
"psr-4": {
"AIDemoData\\": "src/",
"Orhanerday\\OpenAi\\": "vendor/orhanerday/open-ai/src/"
}
},
"autoload-dev": {
"psr-4": {
"AIDemoData\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}