-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.91 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
{
"name": "heptaconnect/production",
"type": "project",
"license": "MIT",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"prefer-stable": true,
"minimum-stability": "stable",
"scripts": {
"pre-install-cmd": [
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console system:update:prepare"
],
"pre-update-cmd": [
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console system:update:prepare"
],
"post-install-cmd": [
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console cache:clear",
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console system:update:finish"
],
"post-update-cmd": [
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console cache:clear",
"[ ! -f vendor/autoload.php ] || \"$PHP_BINARY\" bin/console system:update:finish"
],
"cs:lint": "pint --test",
"cs:fix": "pint"
},
"autoload": {
"psr-4": {
"HeptaConnect\\Production\\": "src/"
}
},
"repositories": [],
"require": {
"php": "^8.2",
"ext-pdo": "*",
"composer-runtime-api": "^2.0",
"heptacom/heptaconnect-bridge-shopware-platform": "^0.9.8",
"heptacom/heptaconnect-core": "^0.9",
"heptacom/heptaconnect-dataset-base": "^0.9",
"heptacom/heptaconnect-portal-base": "^0.9",
"heptacom/heptaconnect-storage-base": "^0.9",
"heptacom/heptaconnect-storage-shopware-dal": "^0.9",
"shopware/core": "~v6.4.20",
"symfony/framework-bundle": "^5.4",
"symfony/runtime": "^6.4"
},
"require-dev": {
"laravel/pint": "^1.13"
}
}