-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
57 lines (57 loc) · 1.61 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
{
"name": "smile/module-custom-entity",
"type": "magento2-module",
"description": "Smile - Custom Entity Module",
"keywords": ["magento2", "custom", "entity"],
"authors": [
{
"name": "Aurélien FOUCRET",
"email": "[email protected]"
},
{
"name": "Maxime LECLERCQ",
"email": "[email protected]"
},
{
"name": "Cédric MAGREZ",
"email": "[email protected]"
}
],
"license": "OSL-3.0",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": true,
"magento/magento-composer-installer": false
},
"sort-packages": true
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "^7.4 || ^8.1",
"smile/module-scoped-eav": "^1.3",
"magento/module-sitemap": ">=100.3.0"
},
"require-dev": {
"smile/magento2-smilelab-quality-suite": "^3.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Smile\\CustomEntity\\" : ""
}
},
"suggest": {
"smile/module-custom-entity-product-link": "Possibility to add product attribute for link product to custom entities",
"smile/module-custom-entity-import-export": "Possibility to import custom entities"
},
"minimum-stability": "dev",
"prefer-stable": true
}