-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.55 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
{
"name": "nosto/module-nostocmp",
"description": "Nosto Category Merchandising extension for Magento 2",
"type": "magento2-module",
"version": "5.3.1",
"require-dev": {
"magento-ecg/coding-standard": "3.*",
"magento/module-store": "101.1.2",
"magento/zendframework1": "1.14.3",
"mridang/pmd-annotations": "^0.0.2",
"staabm/annotate-pull-request-from-checkstyle": "^1.1",
"magento/magento-coding-standard": "^5.0",
"phan/phan": "5.3.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "4.1.0",
"drenso/phan-extensions": "3.5.1",
"phing/phing": "2.*",
"squizlabs/php_codesniffer": "^3.5",
"magento/module-layered-navigation": "100.4.2",
"magento/module-catalog-graph-ql": "100.4.2",
"magento/module-elasticsearch": "*"
},
"license": [
"OSL-3.0"
],
"minimum-stability": "dev",
"require": {
"nosto/module-nostotagging": "^7.0",
"nosto/php-sdk": ">=5.5.0",
"php": ">=7.4",
"ext-json": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/",
"exclude": ["nosto/*"]
}
],
"autoload": {
"psr-4": {
"Nosto\\Cmp\\": ""
},
"files": [
"registration.php"
]
},
"archive": {
"exclude": ["Jenkinsfile", "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"
}
}