forked from shopware/production
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.57 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
64
65
66
67
68
69
70
71
{
"name": "shopware\/production",
"type": "project",
"license": "MIT",
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"minimum-stability": "stable",
"scripts": {
"pre-install-cmd": [
"[ ! -f vendor\/autoload.php ] || bin\/console system:update:prepare"
],
"pre-update-cmd": [
"[ ! -f vendor\/autoload.php ] || bin\/console system:update:prepare"
],
"post-install-cmd": [
"@composer install --working-dir vendor\/shopware\/recovery --ignore-platform-reqs --no-interaction --no-scripts",
"@composer install --working-dir=vendor\/shopware\/recovery\/Common --ignore-platform-reqs --no-interaction --optimize-autoloader --no-suggest",
"[ ! -f install.lock ] || bin\/console system:update:finish"
],
"post-update-cmd": [
"@composer install --working-dir vendor\/shopware\/recovery --ignore-platform-reqs --no-interaction --no-scripts",
"@composer install --working-dir=vendor\/shopware\/recovery\/Common --ignore-platform-reqs --no-interaction --optimize-autoloader --no-suggest",
"[ ! -f install.lock ] || bin\/console system:update:finish"
]
},
"autoload": {
"psr-4": {
"Shopware\\Production\\": "src\/"
}
},
"repositories": [
{
"type": "path",
"url": "custom\/static-plugins\/*",
"options": {
"symlink": true
}
}
],
"require": {
"php": "~7.2",
"ocramius\/package-versions": "1.4.0",
"shopware\/core": "v6.1.*",
"shopware\/administration": "v6.1.*",
"shopware\/storefront": "v6.1.*",
"shopware\/elasticsearch": "v6.1.*",
"shopware\/recovery": "v6.1.*"
},
"require-dev": {
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"ext-openssl": "*",
"bheller\/images-generator": "~1.0.1",
"fzaninotto\/faker": "~1.8.0",
"johnkary\/phpunit-speedtrap": "~3.1.0",
"league\/flysystem-memory": "~1.0.2",
"mbezhanov\/faker-provider-collection": "~1.2.1",
"phpunit\/phpunit": "~8.3.4",
"smalot\/pdfparser": "~0.14.0",
"symfony\/browser-kit": "~4.4",
"symfony\/dependency-injection": "~4.4",
"symfony\/phpunit-bridge": "~4.4",
"symfony\/stopwatch": "~4.4",
"symfony\/var-dumper": "~4.4",
"symfony\/web-profiler-bundle": "~4.4",
"defuse\/php-encryption": "~2.2.1",
"symfony\/dom-crawler": "~4.4"
}
}