-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 loc) · 985 Bytes
/
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
{
"name": "shopware-labs/swag-essentials",
"license": "MIT",
"type": "shopware-plugin",
"extra": {
"installer-name": "SwagEssentials"
},
"autoload": {
"psr-4": {
"SwagEssentials\\CacheMultiplexer\\": "CacheMultiplexer",
"SwagEssentials\\Caching\\": "Caching",
"SwagEssentials\\Common\\": "Common",
"SwagEssentials\\PrimaryReplica\\": "PrimaryReplica",
"SwagEssentials\\Redis\\": "Redis"
}
},
"autoload-dev": {
"psr-4": {
"SwagEssentials\\Tests\\": "tests"
}
},
"require": {
"ext-zlib": "*",
"ext-json": "*",
"ext-redis": "*"
},
"require-dev": {
"shopware/shopware": "~5.6.0 || ~5.7.0 || 5.7.x-dev"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
}
}