-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.44 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
47
48
49
50
{
"name": "shopsys/product-feed-luigis-box",
"type": "library",
"description": "Shopsys Platform plugin interface for Luigi's Box XML product feed generation",
"keywords": ["Luigis Box", "product feed", "XML feed", "plugin", "Shopsys Platform", "SSFW"],
"license": "MIT",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\ProductFeed\\LuigisBoxBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ProductFeed\\LuigisBoxBundle\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3.8.5",
"doctrine/doctrine-bundle": "^2.5.7",
"doctrine/orm": "^2.11.2",
"doctrine/persistence": "^3.3.3",
"shopsys/form-types-bundle": "16.0.x-dev",
"shopsys/framework": "16.0.x-dev",
"shopsys/migrations": "16.0.x-dev",
"shopsys/plugin-interface": "16.0.x-dev",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/form": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/translation": "^5.4",
"twig/twig": "^3.14.0"
},
"require-dev": {
"phpunit/phpunit": "^11.2.1"
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}