Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateus Bissonho committed Aug 9, 2022
0 parents commit 1e68368
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "mbissonho/module-bancointer",
"description": "",
"type": "magento2-module",
"version": "0.1.0",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Mbissonho\\BancoInter\\": ""
}
}
}

9 changes: 9 additions & 0 deletions etc/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Mbissonho_BancoInter" setup_version="0.1.0">
<sequence>
<module name="Magento_Payment"/>
</sequence>
</module>
</config>
6 changes: 6 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Mbissonho_BancoInter',
__DIR__
);

0 comments on commit 1e68368

Please sign in to comment.