-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.25 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
{
"name": "jtl/connector-shopware",
"type": "shopware-frontend-plugin",
"extra": {
"installer-name": "jtlconnector"
},
"description": "Shopware 5 Connector based on jtl/connector",
"keywords": ["jtl", "Shopware", "Connector"],
"homepage": "http://www.jtl-software.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "JTL-Software GmbH",
"email": "[email protected]",
"homepage": "http://www.jtl-software.de",
"role": "Founder"
}
],
"config": {
"platform": {
"php": "7.2.5"
}
},
"replace": {
"monolog/monolog": "*"
},
"require": {
"php": ">=7.1.3",
"jtl/connector": "^3.3",
"symfony/yaml": "^3.4",
"phing/phing": "^2.16",
"theiconic/name-parser": "^0.1.1",
"symfony/event-dispatcher": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"guzzlehttp/guzzle": "^7.4.4"
},
"autoload": {
"psr-4": {
"jtl\\Connector\\Shopware\\": "src/",
"\\": "plugins/"
}
},
"autoload-dev": {
"psr-4": {
"jtl\\Connector\\Shopware\\Tests\\": "tests/src"
}
}
}