forked from tzyganu/Magento2SampleModule
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 803 Bytes
/
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
{
"name": "sample/module-news",
"description": "Magento 2 Sample crud module",
"version": "2.0.0",
"license": "MIT",
"require": {
"php": "~5.6.0|7.0.2|~7.0.6",
"magento/module-backend": "100.1.*",
"magento/module-cms": "101.0.*",
"magento/module-ui": "100.1.*",
"magento/module-store": "100.1.*",
"magento/framework": "100.1.*",
"magento/module-media-storage": "100.1.*",
"magento/module-directory": "100.1.*",
"magento/module-customer": "100.1.*",
"magento/module-rss": "100.1.*"
},
"type": "magento2-module",
"repositories": [
{
"type": "git",
"url": "https://github.com/tzyganu/Magento2SampleModule"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Sample\\News\\": ""
}
}
}