-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.47 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.47 KB
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
{
"name": "bitbag/shopware-inpost-plugin",
"description": "InPost integration for Shopware",
"version": "1.2.6",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "BitBag"
}
],
"require": {
"shopware/core": "6.5.*",
"shopware/storefront": "6.5.*"
},
"require-dev": {
"psalm/plugin-symfony": "^4.0.4",
"bitbag/coding-standard": "^1.0",
"phpunit/phpunit": "^9.5"
},
"extra": {
"shopware-plugin-class": "BitBag\\ShopwareInPostPlugin\\BitBagShopwareInPostPlugin",
"label": {
"en-GB": "BitBag InPost",
"de-DE": "BitBag InPost",
"pl-PL": "BitBag InPost"
},
"description": {
"en-GB": "This plugin allow to checkout order with InPost shipping method",
"de-DE": "This plugin allow to checkout order with InPost shipping method",
"pl-PL": "Wtyczka umożliwia realizację zamówienia metodą wysyłki InPost"
}
},
"autoload": {
"psr-4": {
"BitBag\\ShopwareInPostPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitBag\\ShopwareInPostPlugin\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
}
}