-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 906 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
34
35
36
37
38
39
40
41
{
"name": "kodbruket/magento2-vsf-report-events",
"type": "magento2-component",
"license": "MIT License",
"authors": [
{
"name": "Andreas Karlsson",
"email": "andreas@kodbruket.se"
}
],
"version": "1.0.0",
"keywords": [
"magento",
"magento2",
"vuestorefront",
"vsf"
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": ">=7.0.2",
"magento/module-reports": ">=100.3.2"
},
"replace": {
"kodbruket/module-report-events": "self.version"
},
"autoload": {
"files": [
"src/module-vsf-report-events/registration.php"
],
"psr-4": {
"Kodbruket\\VsfReportEvents\\": "src/module-vsf-report-events"
}
},
"minimum-stability": "alpha",
"prefer-stable": true
}