Skip to content

Commit 255efa8

Browse files
authored
Merge pull request #4 from barbanet/master
Added composer.json file first version. Intended to test the metapackage
2 parents 3eeebcb + e4c8349 commit 255efa8

File tree

4 files changed

+68
-2
lines changed

4 files changed

+68
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 MugAr
3+
Copyright (c) 2019 MugAr
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,53 @@
1-
# module-argentinasetup
1+
# Mugar_ArgentinaSetup for Magento2
2+
3+
Metapackage to install a set of modules that will improve the configuration of your store for websites that are running in Argentina.
4+
5+
Current included modules are:
6+
7+
* [Mugar_ArgentinaRegions](https://github.com/holamugar/module-argentina-regions)
8+
9+
## Installation
10+
11+
Use [composer](https://getcomposer.org/) to install Mugar_ArgentinaSetup.
12+
13+
```
14+
composer require mugar/module-argentina-setup
15+
```
16+
17+
Then you'll need to activate the module.
18+
19+
```
20+
bin/magento module:enable Mugar_ArgentinaSetup
21+
bin/magento setup:upgrade
22+
bin/magento cache:clean
23+
```
24+
25+
## Uninstall
26+
27+
```
28+
bin/magento module:uninstall Mugar_ArgentinaSetup
29+
```
30+
31+
If you used Composer for installation Magento will remove the files and database information.
32+
33+
## Support
34+
35+
You can request to be added to [Slack](https://mugar.slack.com/).
36+
37+
## Contributing
38+
39+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
40+
41+
Please make sure to update tests as appropriate.
42+
43+
### How to create a PR
44+
45+
1. Fork it
46+
2. Create your feature branch (git checkout -b my-new-feature)
47+
3. Commit your changes (git commit -am 'Add some feature')
48+
4. Push to the branch (git push origin my-new-feature)
49+
5. Create new Pull Request
50+
51+
## License
52+
53+
[MIT](https://choosealicense.com/licenses/mit/)

composer.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "mugar/module-argentina-setup",
3+
"description": "Argentina l10n metapackage.",
4+
"version": "0.1.0",
5+
"type": "metapackage",
6+
"require": {
7+
"php": "~5.6.5|7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0",
8+
"mugar/module-argentina-regions": "1.2.*"
9+
},
10+
"license": [
11+
"MIT"
12+
]
13+
}

0 commit comments

Comments
 (0)