This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
/
composer.json
79 lines (79 loc) · 2.55 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
72
73
74
75
76
77
78
79
{
"name": "shopware/development",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "custom/plugins/*",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "custom/plugins/*/packages/*",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "platform",
"options": {
"symlink": true
}
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4.3"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Shopware\\Development\\": "src/"
}
},
"require": {
"php": "^7.4.3 || ^8.0",
"composer-runtime-api": "^2.0",
"shopware/platform": "6.4.x@dev || dev-trunk"
},
"scripts": {
"post-update-cmd": [
"[ ! -d platform/.git ] || [ -L vendor/shopware/platform ] || (echo 'vendor/shopware/platform should be a symlink to platform'; exit 1)",
"[ ! -d vendor/shopware/platform/.git ] || ln -sf $PWD/dev-ops/pre-commit vendor/shopware/platform/.git/hooks/pre-commit"
]
},
"require-dev": {
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"maltyxx/images-generator": "1.0.0",
"brianium/paratest": "^6.2",
"dms/phpunit-arraysubset-asserts": "^0.2.1",
"fakerphp/faker": "1.14.1",
"johnkary/phpunit-speedtrap": "3.3.0",
"league/flysystem-memory": "1.0.2",
"mbezhanov/faker-provider-collection": "2.0.1",
"nikic/php-parser": "4.10.4",
"opis/json-schema": "1.0.19",
"phpunit/php-code-coverage": "9.2.5",
"phpunit/phpunit": "9.5.2",
"smalot/pdfparser": "0.14.0",
"symfony/browser-kit": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/dependency-injection": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/phpunit-bridge": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/stopwatch": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/var-dumper": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/web-profiler-bundle": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/dom-crawler": "~4.4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0"
}
}