Skip to content

Commit 265bd11

Browse files
author
Jan-Marten de Boer
committed
Move module to new repository
1 parent fca33fd commit 265bd11

File tree

5 files changed

+69
-1
lines changed

5 files changed

+69
-1
lines changed

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Arjen Miedema
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Diff for: README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# Hackathon_AddressValidation
1+
# AddressValidation
2+
AddressValidation for Magento 2

Diff for: composer.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "hackathon/module-address-validation",
3+
"description": "Magento 2 Address Validation",
4+
"type": "magento2-module",
5+
"authors": [
6+
{
7+
"name": "Arjen Miedema",
8+
"email": "[email protected]",
9+
"role": "developer"
10+
},
11+
{
12+
"name": "Jan-Marten de Boer",
13+
"email": "[email protected]",
14+
"homepage": "http://johmanx.com",
15+
"role": "developer"
16+
}
17+
],
18+
"minimum-stability": "stable",
19+
"require": {
20+
"php": "~5.5.0|~5.6.0|~7.0.0",
21+
"magento/product-community-edition": "2.0.*"
22+
},
23+
"autoload": {
24+
"files": [
25+
"src/Hackathon/AddressValidation/registration.php"
26+
],
27+
"psr-4": {
28+
"VendorName\\MyModule\\": "src/Hackathon/AddressValidation/"
29+
}
30+
}
31+
}

Diff for: etc/module.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
2+
<module name="Hackathon_AddressValidation" setup_version="1.0.0">
3+
4+
</module>
5+
</config>

Diff for: registration.php

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

0 commit comments

Comments
 (0)