-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.6 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
{
"name": "ergonode/integration-shopware",
"description": "Shopware Ergonode Integration",
"version": "3.0.1",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
{
"name": "Ergonode",
"homepage": "https://www.ergonode.com/",
"email": "contact@ergonode.com",
"role": "Owner"
}
],
"extra": {
"shopware-plugin-class": "Ergonode\\IntegrationShopware\\ErgonodeIntegrationShopware",
"author": "Strix",
"label": {
"pl-PL": "Integracja Shopware z Ergonode",
"de-DE": "Shopware Ergonode Integration",
"en-GB": "Shopware Ergonode Integration"
}
},
"require": {
"php": ">= 8.2",
"ext-json": "*",
"shopware/administration": "6.6.*",
"shopware/core": "6.6.*",
"gmostafa/php-graphql-client": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "~9.5.17",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.8.8",
"composer-runtime-api": "^2.0",
"friendsofphp/php-cs-fixer": "^3.61",
"squizlabs/php_codesniffer": "^3.10",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"Ergonode\\IntegrationShopware\\": "src/"
},
"exclude-from-classmap": ["src/DependencyInjection/*"]
},
"autoload-dev": {
"psr-4": {
"Ergonode\\IntegrationShopware\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}