-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
66 lines (66 loc) · 1.82 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
{
"name": "recolize/module-recommendation-engine-magento2",
"description": "The Recolize Recommendation Engine Extension for Magento 2",
"version": "1.1.3",
"type": "magento2-module",
"keywords": [
"recolize",
"recommendation",
"magento"
],
"homepage": "https://www.recolize.com",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Recolize GmbH",
"email": "[email protected]",
"homepage": "https://www.recolize.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": "^7|^8.0",
"magento/framework": ">=100.1.3",
"magento/module-configurable-product": ">=100.1.3",
"magento/module-import-export": ">=100.1.3"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Recolize\\RecommendationEngine\\": ""
}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"magento/magento-coding-standard": "*",
"phpstan/phpstan": "^1.10",
"bitexpert/phpstan-magento": "^0.30.1",
"phpstan/extension-installer": "^1.4"
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,vendor/phpcompatibility/php-compatibility)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,vendor/phpcompatibility/php-compatibility)"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}