File tree 5 files changed +53
-1
lines changed
5 files changed +53
-1
lines changed Original file line number Diff line number Diff line change
1
+ /vendor /
Original file line number Diff line number Diff line change 1
- # magento2-mondido
1
+ # Mondido payment module for Magento 2
Original file line number Diff line number Diff line change
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
+
10
+ "homepage" : " https://kodbruket.se" ,
11
+ "role" : " Developer"
12
+ },
13
+ {
14
+ "name" : " Robert Lord" ,
15
+
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
+ }
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
1
+ <?php
2
+ \Magento \Framework \Component \ComponentRegistrar::register (
3
+ \Magento \Framework \Component \ComponentRegistrar::MODULE ,
4
+ 'Mondido_Mondido ' ,
5
+ __DIR__
6
+ );
You can’t perform that action at this time.
0 commit comments