Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Apr 14, 2017
0 parents commit 8ca3dc0
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 2017-03-09
# https://github.com/isaacs/github/issues/170#issuecomment-150489692
root = true
[*]
indent_size = 4
indent_style = tab
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "mage2pro/salesforce"
,"version": "0.0.1"
,"description": "The «Salesforce» extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/salesforce"
,"license": "proprietary"
,"authors": [{
"name": "Dmitry Fedyuk",
"email": "[email protected]",
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.4.55"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Salesforce\\": ""}}
,"keywords": [
"API"
,"CRM"
,"eCommerce"
,"Integration"
,"Magento"
,"Magento 2"
,"Magento extension"
,"Salesforce"
]
}
11 changes: 11 additions & 0 deletions etc/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?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='Dfe_Salesforce' setup_version='0.0.1'>
<sequence>
<module name='Df_Core'/>
</sequence>
</module>
</config>
3 changes: 3 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php
use Magento\Framework\Component\ComponentRegistrar as R;
R::register(R::MODULE, 'Dfe_Salesforce', __DIR__);

0 comments on commit 8ca3dc0

Please sign in to comment.