-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.13 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "findologic/plugin-shopware-6",
"description": "Findologic plugin for Shopware 6",
"version": "6.0.4",
"license": "GPL-3.0-or-later",
"type": "shopware-platform-plugin",
"authors": [
{
"name": "FINDOLOGIC GmbH"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/findologic/shopware6-common.git"
}
],
"config": {
"platform": {
"php": "8.2"
}
},
"require": {
"php": ">=8.2",
"findologic/libflexport": "^3.1",
"findologic/findologic-api": "^2.0",
"findologic/shopware6-common": "^3.0.0",
"vin-sw/shopware-sdk": "^2.0",
"composer/semver": "^3.3"
},
"extra": {
"shopware-plugin-class": "FINDOLOGIC\\FinSearch\\FinSearch",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by FINDOLOGIC GmbH",
"label": {
"de-DE": "FINDOLOGIC Suche & Navigation",
"en-GB": "FINDOLOGIC Search & Navigation"
},
"description": {
"de-DE": "Findologic Plugin für das Shopware 6 E-Commerce System. Features: Personalisierung, Suche, Navigation, User Interface, Merchandising. Shopware Technology Partner.",
"en-GB": "Findologic plugin for the Shopware 6 e-commerce system. Features: Personalization, Search, Navigation, User Interface, Merchandising. Shopware Technology Partner."
},
"supportLink": {
"de-DE": "https://support.findologic.com/hc/de/requests/new",
"en-GB": "https://support.findologic.com/hc/en/requests/new"
},
"manufacturerLink": {
"de-DE": "https://www.findologic.com/",
"en-GB": "https://www.findologic.com/en/"
}
},
"autoload": {
"psr-4": {
"FINDOLOGIC\\FinSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FINDOLOGIC\\FinSearch\\Tests\\": "tests/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"monolog/monolog": "^3.3.1",
"bramus/monolog-colored-line-formatter": "^3.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=phpcs.xml .",
"fix": "./vendor/bin/phpcbf --standard=phpcs.xml .",
"test": "./bin/phpunit.sh",
"release": "release/bin/release"
}
}