forked from Nosto/nosto-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nosto/module-nostotagging",
"description": "Increase your conversion rate and average order value by delivering your customers personalized product recommendations throughout their shopping journey.",
"type": "magento2-module",
"version": "7.3.1",
"require-dev": {
"phpmd/phpmd": "^2.5",
"sebastian/phpcpd": "*",
"phing/phing": "2.*",
"magento-ecg/coding-standard": "4.5.*",
"magento/module-catalog": "104.0.2",
"magento/module-sales": "103.0.3",
"magento/module-sales-inventory": "100.4.0.*",
"magento/module-sales-rule": "101.2.3",
"magento/module-store": "101.1.3",
"magento/module-configurable-product": "100.4.3",
"magento/module-directory": "100.4.3",
"magento/module-bundle": "101.0.3",
"magento/module-search": "101.1.3",
"magento/module-catalog-search": "102.0.3",
"magento/module-quote": "101.2.3",
"magento/module-review": "100.4.3",
"magento/module-grouped-product": "100.4.3",
"mridang/pmd-annotations": "^0.0.2",
"staabm/annotate-pull-request-from-checkstyle": "^1.1",
"magento/magento-coding-standard": "^5.0",
"magento/module-asynchronous-operations": "100.4.3",
"phan/phan": "5.3.0",
"drenso/phan-extensions": "3.5.1",
"yotpo/module-yotpo-combined": "^4.1",
"phpunit/phpunit": "~9.5.18"
},
"suggest": {
"magento/product-community-edition": "2.*",
"yotpo/module-yotpo-combined": "^4.1"
},
"license": [
"OSL-3.0"
],
"require": {
"php": ">=7.4.0",
"magento/framework": ">=101.0.6|~104.0",
"ext-json": "*",
"nosto/php-sdk": "^7.1"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": {
"Nosto\\Tagging\\": ""
},
"files": [
"registration.php"
]
},
"archive": {
"exclude": [
"!composer.*",
"Jenkinsfile",
"default.conf",
"Dockerfile",
".DS_STORE",
".idea",
".phan",
".docker",
"ruleset.xml",
"phan.*",
".gitignore",
"build.xml",
".github",
"supervisord.conf",
"entrypoint.sh",
"/magento"
]
},
"config": {
"process-timeout":3600
},
"scripts": {
"di:compile": "./compile.sh",
"ci:inspect": "./inspect.sh"
}
}