forked from magento/magento2-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAGETWO-46263: Create sample module inside installation
- Loading branch information
Oleksii Korshenko
committed
Dec 15, 2015
1 parent
ac208c4
commit 17795aa
Showing
7 changed files
with
914 additions
and
96 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Synopsis | ||
|
||
This is a meta package that pulls in all the sample Magento 2 EE modules from [packages.magento.com](http://packages.magento.com/) | ||
|
||
## Installation | ||
|
||
To use these samples you will first need to [install Magento 2 EE](http://devdocs.magento.com/guides/v1.0/install-gde/bk-install-guide.html). | ||
|
||
Update the root composer.json for Magento 2 to add a dependency on this package. | ||
|
||
This can be done by adding the following to the 'require' section. | ||
|
||
"magento/sample-ee-bundle-all": "*" | ||
|
||
Ensure you have the package.magento.com added as a repository in your composer.json and then run `composer update` to have composer download the sample modules. | ||
|
||
Once installed, run the Magento 2 setup application and enable each of the installed modules. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "magento/sample-ee-bundle-all", | ||
"description": "A package that pulls in all Magento 2 EE sample modules", | ||
"type": "metapackage", | ||
"version": "1.0.0", | ||
"license": [ | ||
"proprietary" | ||
], | ||
"require": { | ||
"magento/sample-module-sample-message-queue": "~1.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.