forked from kevin-blackbird/magento-2-data-model-sample
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.05 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
{
"name": "blackbird/module-data-model-sample",
"description": "Sample module of a data model persistence implementation.",
"keywords": [
"php",
"magento",
"magento2",
"sample",
"data model",
"persistence"
],
"require": {
"magento/framework": "101.*.*"
},
"type": "magento2-module",
"version": "0.3.0",
"license": [
"MIT"
],
"homepage": "https://github.com/blackbird-agency/magento-2-data-model-sample",
"authors": [
{
"name": "Blackbird Team",
"email": "hello@bird.eu",
"homepage": "https://black.bird.eu/",
"role": "lead"
}
],
"support": {
"source": "https://github.com/blackbird-agency/magento-2-data-model-sample",
"issues": "https://github.com/blackbird-agency/magento-2-data-model-sample/issues"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Blackbird\\DataModelSample\\": ""
}
}
}