forked from Smile-SA/magento2-module-custom-entity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.25 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
{
"name": "smile/module-custom-entity",
"type": "magento2-module",
"description": "Smile - Custom Entity Module",
"keywords": ["magento2", "custom", "entity"],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"smile/module-scoped-eav": "~1.2.0"
},
"require-dev": {
"smile/magento2-smilelab-quality-suite": "^1.0.5",
"edgedesign/phpqa": "^1.18",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"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"
},
"license": "OSL-3.0",
"authors": [
{
"name": "Aurélien FOUCRET",
"email": "[email protected]"
},
{
"name": "Maxime LECLERCQ",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Smile\\CustomEntity\\" : ""
}
},
"minimum-stability": "dev",
"prefer-stable": true
}