-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nosto/nosto-integration",
"description": "Nosto Integration",
"type": "shopware-platform-plugin",
"version": "4.2.9",
"license": "OSL-3.0",
"authors": [
{
"name": "Nosto Solutions Oy",
"homepage": "https://www.nosto.com/"
}
],
"require": {
"nosto/shopware6-job-scheduler": "^3.0",
"nosto/php-sdk": "^7.5.1",
"php": "^8.2"
},
"require-dev": {
"symplify/easy-coding-standard": "^12.0",
"monolog/monolog": "^3.5",
"bramus/monolog-colored-line-formatter": "^3.1",
"slevomat/coding-standard": "^8.15"
},
"autoload": {
"psr-4": {
"Nosto\\NostoIntegration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nosto\\NostoIntegration\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"shopware-plugin-class": "Nosto\\NostoIntegration\\NostoIntegration",
"plugin-icon": "src/Resources/config/plugin.png",
"label": {
"de-DE": "Nosto-Integration",
"en-GB": "Nosto Integration"
},
"description": {
"de-DE": "Nostos führende Personalisierungslösung nutzt die Kraft von Big Data (künstliche Intelligenz), um Ihren Online-Shop und jeden Ihrer Besucher im Detail zu verstehen!",
"en-GB": "Nosto's leading personalisation solution uses the power of Big Data (artificial intelligence) to understand your online shop and each of your visitors in detail!"
},
"manufacturerLink": {
"de-DE": "https://www.nosto.com/",
"en-GB": "https://www.nosto.com/"
},
"supportLink": {
"de-DE": "https://www.nosto.com/",
"en-GB": "https://www.nosto.com/"
}
},
"scripts": {
"lint": "./vendor/bin/ecs check",
"fix": "./vendor/bin/ecs check --fix",
"test": "./bin/phpunit.sh",
"release": "release/bin/release"
}
}