-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "coreshop/fixture-bundle",
"type": "pimcore-bundle",
"description": "CoreShop - Fixture Bundle",
"keywords": [
"coreshop",
"pimcore",
"ecommerce"
],
"homepage": "http://www.coreshop.org",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "CoreShop Team",
"email": "[email protected]",
"homepage": "https://www.coreshop.org/",
"role": "Developer"
},
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"coreshop/resource-bundle": "^3.0",
"symfony/framework-bundle": "^5.2.0",
"symfony/doctrine-bridge": "^5.2.0",
"symfony/twig-bundle": "^5.2.0",
"doctrine/data-fixtures": "^1.5",
"doctrine/dbal": "^2.13",
"doctrine/orm": "^2.9",
"pimcore/pimcore": "^10.5"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3.40",
"phpstan/phpstan-webmozart-assert": "^1.2.4"
},
"autoload": {
"psr-4": {
"CoreShop\\Bundle\\FixtureBundle\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-next": "4.0-dev",
"dev-master": "4.0-dev"
}
},
"config": {
"sort-packages": true
}
}