Skip to content

Commit 93830e6

Browse files
committed
Add initial files
1 parent 9d2ce46 commit 93830e6

File tree

5 files changed

+53
-1
lines changed

5 files changed

+53
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# magento2-mondido
1+
# Mondido payment module for Magento 2

composer.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "mondido/magento2-mondido",
3+
"description": "Mondido payment module for Magento 2.",
4+
"version": "1.0.0",
5+
"type": "magento2-module",
6+
"authors": [
7+
{
8+
"name": "Andreas Karlsson",
9+
"email": "[email protected]",
10+
"homepage": "https://kodbruket.se",
11+
"role": "Developer"
12+
},
13+
{
14+
"name": "Robert Lord",
15+
"email": "[email protected]",
16+
"homepage": "https://codepeak.se",
17+
"role": "Developer"
18+
}
19+
],
20+
"require": {
21+
"php": "7.0.2|7.0.4|~7.0.6",
22+
"magento/module-sales": "100.0.*",
23+
"magento/module-checkout": "100.0.*",
24+
"magento/module-payment": "100.0.*",
25+
"magento/framework": "100.0.*",
26+
"magento/magento-composer-installer": "100.0.*"
27+
},
28+
"autoload": {
29+
"files": ["registration.php"],
30+
"psr-4": {
31+
"Mondido\\Mondido\\": ""
32+
}
33+
}
34+
}

etc/module.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0"?>
2+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3+
<module name="Mondido_Mondido" setup_version="1.0.0">
4+
<sequence>
5+
<module name="Magento_Checkout"/>
6+
<module name="Magento_Payment"/>
7+
<module name="Magento_Sales"/>
8+
<module name="Magento_Quote"/>
9+
</sequence>
10+
</module>
11+
</config>

registration.php

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
\Magento\Framework\Component\ComponentRegistrar::register(
3+
\Magento\Framework\Component\ComponentRegistrar::MODULE,
4+
'Mondido_Mondido',
5+
__DIR__
6+
);

0 commit comments

Comments
 (0)