-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (61 loc) · 1.43 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": "shopware/production",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "custom/plugins/*",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "platform",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "/build/repos/core",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "/build/repos/administration",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "/build/repos/storefront",
"options": {
"symlink": false
}
}
],
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Shopware\\Production\\": "src/"
}
},
"require": {
"shopware/core": "v6.0.0+ea1.1@dev",
"shopware/storefront": "v6.0.0+ea1.1@dev",
"shopware/administration": "v6.0.0+ea1.1@dev",
"symfony/console": "4.3.2",
"symfony/process": "4.3.2",
"symfony/dotenv": "4.3.2",
"ocramius/package-versions": "1.4.0"
}
}