-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
66 lines (66 loc) · 2.26 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
{
"name": "frosh/platform-bunnycdn-media-storage",
"keywords": [
"shopware",
"backend",
"media",
"media manager",
"bunnyCDN",
"storage"
],
"description": "This plugins allows you to use BunnyCdn as adapter for media",
"version": "3.4.0",
"type": "shopware-platform-plugin",
"license": "mit",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"require": {
"shopware/core": "~6.5.3||~6.6.0",
"platformcommunity/flysystem-bunnycdn": "^3.3.5",
"league/flysystem-path-prefixing": "^3.10.3",
"ajgl/flysystem-replicate": "^2.2",
"tinect/flysystem-garbage": "^1.0"
},
"extra": {
"shopware-plugin-class": "Frosh\\BunnycdnMediaStorage\\FroshPlatformBunnycdnMediaStorage",
"label": {
"de-DE": "BunnyCdn Media Storage Plugin v3",
"en-GB": "BunnyCdn Media Storage Plugin v3"
},
"description": {
"de-DE": "Transferiere Deine Dateien nach BunnyCDN. Beschleunige dadurch die Auslieferung der Bilder! Mach Speicherplatz frei! Profitiere von kleineren Backups!",
"en-GB": "Transfer all your files to BunnyCDN. This will speed up the delivery of the pictures including thumbnails! Free up space! Benefit from smaller backups!"
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformBunnycdnMediaStorage",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformBunnycdnMediaStorage"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformBunnycdnMediaStorage/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformBunnycdnMediaStorage/issues"
}
},
"autoload": {
"psr-4": {
"Frosh\\BunnycdnMediaStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Frosh\\BunnycdnMediaStorage\\Tests\\Unit\\": "tests/unit"
}
},
"minimum-stability": "RC",
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"symfony/runtime": true
}
}
}