-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.58 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
{
"name": "bitbag/shopware-orlen-paczka-plugin",
"description": "Orlen Paczka plugin",
"version": "1.0.2",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "BitBag"
}
],
"autoload": {
"psr-4": {
"BitBag\\ShopwareOrlenPaczkaPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitBag\\ShopwareOrlenPaczkaPlugin\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "BitBag\\ShopwareOrlenPaczkaPlugin\\BitBagShopwareOrlenPaczkaPlugin",
"label": {
"de-DE": "Orlen-Paket",
"en-GB": "Orlen Paczka",
"pl-PL": "Orlen Paczka"
},
"description": {
"de-DE": "Das Plug-in ermöglicht die Ausführung der Bestellung mit der Versandart Orlen Parcel",
"en-GB": "This plugin allow to checkout order with Orlen Paczka shipping method",
"pl-PL": "Wtyczka umożliwia realizację zamówienia metodą wysyłki Orlen Paczka"
}
},
"require": {
"ext-soap": "*",
"php": "^8.1",
"shopware/core": "^6.5",
"bitbag/pp-client": "^0.3"
},
"require-dev": {
"bitbag/coding-standard": "^1.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.24",
"psalm/plugin-symfony": "^v4.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
}
}