-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
126 lines (126 loc) · 4.16 KB
/
Copy pathcomposer.json
File metadata and controls
126 lines (126 loc) · 4.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"_comment": [
"davidbel/magento-ai-search by David Belicza",
"SPDX-License-Identifier: MIT",
"https://github.com/DavidBelicza/Magento-AI-Search"
],
"name": "davidbel/magento-ai-search",
"description": "AI search module for Magento 2.",
"keywords": [
"adobe commerce",
"ai",
"ai search",
"catalog search",
"embeddings",
"magento",
"magento2",
"opensearch",
"product search",
"semantic search",
"vector search"
],
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "David Belicza",
"homepage": "https://github.com/DavidBelicza"
}
],
"homepage": "https://github.com/DavidBelicza/Magento-AI-Search",
"support": {
"issues": "https://github.com/DavidBelicza/Magento-AI-Search/issues",
"source": "https://github.com/DavidBelicza/Magento-AI-Search"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"ext-dom": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/promises": "^2.0",
"magento/framework": "103.0.*",
"magento/module-backend": "102.0.*",
"magento/module-bundle": "101.0.*",
"magento/module-catalog": "104.0.*",
"magento/module-catalog-graph-ql": "100.4.*",
"magento/module-config": "101.2.*",
"magento/module-configurable-product": "100.4.*",
"magento/module-cron": "100.4.*",
"magento/module-elasticsearch": "101.0.*",
"magento/module-grouped-product": "100.4.*",
"magento/module-graph-ql-cache": "100.4.*",
"magento/module-indexer": "100.4.*",
"magento/module-open-search": "100.4.*",
"magento/module-page-cache": "100.4.*",
"magento/module-store": "101.1.*",
"magento/module-ui": "101.2.*",
"php": ">=8.3",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.43",
"magento/magento-coding-standard": "40",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.1 !=2.2.10",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0",
"slevomat/coding-standard": "~8.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"DavidBel\\AiSearch\\": ""
},
"exclude-from-classmap": [
"/Test/"
]
},
"autoload-dev": {
"psr-4": {
"DavidBel\\AiSearch\\Test\\": "Test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"magento/composer-dependency-version-audit-plugin": false
},
"sort-packages": true
},
"scripts": {
"analyse": "@php vendor/bin/phpstan analyse --configuration=phpstan.neon.dist --no-progress",
"cs": "@php vendor/bin/phpcs --runtime-set testVersion 8.3- --standard=phpcs.xml.dist",
"cs:fix": "@php vendor/bin/phpcbf --runtime-set testVersion 8.3- --standard=phpcs.xml.dist",
"lint": "@php vendor/bin/parallel-lint --exclude vendor --exclude .phpstan.cache .",
"mess": "@php vendor/bin/phpmd Api,Block,Client,Config,Controller,Cron,Indexer,Ingestion,Log,Model,Observer,Plugin,Repository,Search,Setup,Test,Ui text phpmd.xml",
"qa": [
"@qa:checks",
"@test"
],
"qa:checks": [
"@composer validate --strict",
"@security",
"@lint",
"@cs",
"@analyse",
"@mess"
],
"qa:coverage": [
"@qa:checks",
"@test:coverage"
],
"security": "@composer audit --locked --abandoned=report",
"test": "@php vendor/bin/phpunit --configuration=phpunit.xml.dist",
"test:coverage": "@test --coverage-clover=coverage.xml"
}
}