Magento sample data includes a sample store, complete with more than 250 products

Overview

Magento sample data includes a sample store, complete with more than 250 products (about 200 of them are configurable products), categories, promotional price rules, CMS pages, banners, and so on. Sample data uses the Luma theme on the storefront.

Installing sample data is optional.

Technically, sample data is a set of regular Magento modules, which can be deployed and installed together with the Magento instance, or later in the scope of upgrade.

Deploy Sample Data

You can deploy sample data from one of the following sources:

  • From the Magento composer repository, optionally using Magento CLI
  • From the Magento GitHub repository

If your Magento code base was cloned from the master branch, you can use either source of the sample data. If it was cloned from the develop branch, use the GitHub repository and choose to get sample data modules from the develop branch.

Deploy Sample Data from Composer Repository

To deploy sample data from the Magento composer repository using Magento CLI:

  1. If your Magento instance is already installed, skip this step. Otherwise, in the Magento root directory, run: # composer install.
  2. In the Magento root directory, run: # bin/magento sampledata:deploy. This command collects the dependencies from the suggest sections of the composer.json files of modules, which suggest to install sample data (like Magento_Catalog, Magento_Sales, and so on).

To deploy sample data from the Magento composer repository without Magento CLI:

  1. Specify sample data packages in the require section of the root composer.json file, for example:
{
    "require": {
        ...
        "magento/module-catalog-sample-data": "{version}",
        "magento/module-configurable-sample-data": "{version}",
        "magento/module-cms-sample-data": "{version}",
        "magento/module-sales-sample-data": "{version}"
        ....
    }
}

Where is the version of the packages; it should correspond to the version of the Magento instance.

Each package corresponds to a sample data module. The complete list of available modules can be viewed in the [sample data GitHub repository] (https://github.com/magento/magento2-sample-data/tree/develop/app/code/Magento)

  1. To update the dependencies, in the Magento root directory, run: # composer update

Deploy Sample Data from GitHub Repository

To deploy sample data from the GitHub repository:

  1. Clone sample data from https://github.com/magento/magento2-sample-data. If your Magento instance was cloned from the master branch, choose the master branch when cloning sample data; choose the develop branch if Magento was cloned from develop.
  2. Link the sample data and your Magento instance by running: # php -f /dev/tools/build-sample-data.php -- --ce-source=""

Install Sample Data

Once the sample data is deployed, it will be installed automatically when you install or upgrade your Magento instance by using the command line.

Uninstall Sample Data

To remove the sample data modules from the code base, run one of the following commands from the Magento root directory:

  • If sample data was deployed from the composer repository, run: # bin/magento sampledata:remove
  • If sample data was deployed from the GitHub repository and linked to your Magento instance, run: # php -f /dev/tools/build-sample-data.php – --command=unlink --ce-source=""

To delete all the products and other entities provided by the sample data modules, delete the database and reinstall Magento with a clean database.

Reinstall Sample Data

If you have deleted certain entities provided by sample data and want to restore them, take the following steps:

  1. From the Magento root directory, run the following command: # bin/magento sampledata:reset
  2. Upgrade Magento as usual.

The deleted sample data entities will be restored. Those entities, which were changed, will preserve these changes and will not be restored to the default view.

Documentation

You can find the more detailed description of sample data manipulation procedures at http://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-sample-data.html

Comments
  • Updated PHP versions in composer files

    Updated PHP versions in composer files

    Description (*)

    This pull request provides the update of the PHP version in require section to "~7.4.0||~8.0.0||~8.1.0" into all composer files. Builds of this PR should run with PHP 7.4 environment.

    Related Pull Requests

    https://github.com/magento/magento2/pull/33997 https://github.com/magento/partners-magento2ee/pull/602 https://github.com/magento/partners-magento2b2b/pull/587 https://github.com/magento/inventory/pull/3323 https://github.com/magento/adobe-stock-integration/pull/1867 https://github.com/magento/security-package/pull/305 https://github.com/magento/magento2-page-builder/pull/774 https://github.com/magento/magento2-page-builder-ee/pull/191 https://github.com/magento/adobe-ims/pull/11

    Related Issues (*)

    1. magento/magento2#34009
    partners-contribution Partner: Atwix 
    opened by andrewbess 33
  • [WIP] [DO NOT TOUCH] Updated PHP versions in composer files [CHECK PHP8]

    [WIP] [DO NOT TOUCH] Updated PHP versions in composer files [CHECK PHP8]

    Description (*)

    This pull request provides the update of the PHP version in require section to "~7.4.0||~8.0.0||~8.1.0" into all composer files. Also, this PR provides the update composer dependencies. Builds of this PR should run with PHP 8.0 environment.

    Related Pull Requests

    https://github.com/magento/magento2/pull/34007 https://github.com/magento/partners-magento2ee/pull/603 https://github.com/magento/partners-magento2b2b/pull/588 https://github.com/magento/partners-magento2-infrastructure/pull/64 https://github.com/magento/inventory/pull/3324 https://github.com/magento/adobe-stock-integration/pull/1868 https://github.com/magento/security-package/pull/306 https://github.com/magento/magento2-page-builder/pull/776 https://github.com/magento/magento2-page-builder-ee/pull/192 https://github.com/magento/adobe-ims/pull/12

    partners-contribution Partner: Atwix 
    opened by andrewbess 10
  • Fix PHP Fatal error on sampledata:install routine

    Fix PHP Fatal error on sampledata:install routine

    The latest push to the magento2 develop branch breaks the sample data. Attempts to install fail due to referencing a now non-existant constant:

    PHP Fatal error:  Undefined class constant 'FIELD_NAME_VALIDATION_STRATEGY' in /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Module/ConfigurableProduct/Setup/Product.php on line 84
    PHP Stack trace:
    PHP   1. {main}() /server/sites/m2.dev/bin/magento:0
    PHP   2. Symfony\Component\Console\Application->run() /server/sites/m2.dev/bin/magento:25
    PHP   3. Symfony\Component\Console\Application->doRun() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:126
    PHP   4. Symfony\Component\Console\Application->doRunCommand() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:195
    PHP   5. Symfony\Component\Console\Command\Command->run() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:874
    PHP   6. Magento\SampleData\Console\Command\SampleDataInstallCommand->execute() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:257
    PHP   7. Magento\SampleData\Model\SampleData->install() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Console/Command/SampleDataInstallCommand.php:102
    PHP   8. Magento\SampleData\Model\Installer->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Model/SampleData.php:96
    PHP   9. Magento\SampleData\Module\ConfigurableProduct\Setup->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Model/Installer.php:113
    PHP  10. Magento\SampleData\Module\ConfigurableProduct\Setup\Product->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Module/ConfigurableProduct/Setup.php:34
    
    Fatal error: Undefined class constant 'FIELD_NAME_VALIDATION_STRATEGY' in /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Module/ConfigurableProduct/Setup/Product.php on line 84
    
    Call Stack:
        0.0002     229368   1. {main}() /server/sites/m2.dev/bin/magento:0
        2.9139   63247472   2. Symfony\Component\Console\Application->run() /server/sites/m2.dev/bin/magento:25
        2.9155   63292104   3. Symfony\Component\Console\Application->doRun() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:126
        2.9157   63293056   4. Symfony\Component\Console\Application->doRunCommand() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:195
        2.9157   63293536   5. Symfony\Component\Console\Command\Command->run() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Application.php:874
        2.9159   63297368   6. Magento\SampleData\Console\Command\SampleDataInstallCommand->execute() /server/sites/m2.dev/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:257
        2.9173   63325144   7. Magento\SampleData\Model\SampleData->install() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Console/Command/SampleDataInstallCommand.php:102
        3.7413   70781968   8. Magento\SampleData\Model\Installer->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Model/SampleData.php:96
       89.9485  146883664   9. Magento\SampleData\Module\ConfigurableProduct\Setup->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Model/Installer.php:113
       89.9485  146884088  10. Magento\SampleData\Module\ConfigurableProduct\Setup\Product->run() /server/sites/m2.dev/var/tmp/m2-data/app/code/Magento/SampleData/Module/ConfigurableProduct/Setup.php:34
    
    

    Note: I did not research alternatives to the removed argument. Based on the validation strategy used and the sample data installing with no errors, it may not be necessary any more.

    opened by davidalger 7
  • Installing magento/sample-data-media (100.0.2)

    Installing magento/sample-data-media (100.0.2)

    The steps that I do: 1.Clone mage2 project 2.Switch to master From Root folder 3.composer install 4.php bin/magento sampledata:deploy

    And I get a boom image

    Soft that I have: Xampp 5.6.14 It has apache 2.4 and php 5.6.14 About mysql, read it evloved into mariaDB thou the mysql command is on, anyway I don't have any problem with normal installation of magento2,

    Composer: Composer version 1.0-dev (a066171dcc023ad6429881a7692e46f10e080f99) 2015-11-12 13:44:17

    Any tips what I'm doing wrong or what is the problem :v

    opened by przmak 6
  • Configurable Product Installation failed

    Configurable Product Installation failed

    While installing Magento2 according to this instruction: http://devdocs.magento.com/guides/v2.0/install-gde/install/sample-data.html I get the following error: PHP Fatal error: Undefined class constant 'FIELD_NAME_VALIDATION_STRATEGY' in /private/var/www/magento/magento2-sample-data/app/code/Magento/SampleData/Module/ConfigurableProduct/Setup/Product.php on line 84

    Both magento2 and sample-data repositories on master.

    bug wontfix 
    opened by sydekumf 6
  • Changed restrictions for php to

    Changed restrictions for php to "~7.4.0||~8.1.0" into `composer.json` files

    Description (*)

    This pull request (PR) provides fixes for composer.json files

    1. remove restriction "~8.0.0" for "php" requirements

    Related Pull Requests

    Fixed Issues (if relevant)

    1. magento/magento2#34852

    Contribution checklist (*)

    • [ ] Pull request has a meaningful description of its purpose
    • [ ] All commits are accompanied by meaningful commit messages
    • [ ] All new or changed code is covered with unit/integration tests (if applicable)
    • [ ] All automated tests passed successfully (all builds are green)
    opened by andrewbess 5
  • Cannot install sample-data even minimum-stability=dev

    Cannot install sample-data even minimum-stability=dev

    [ec2-user@ip-1***30 20151229141720]$ bin/magento sampledata:deploy 
    ./composer.json has been updated
    Loading composer repositories with package information
    Updating dependencies (including require-dev)
    Your requirements could not be resolved to an installable set of packages.
    
      Problem 1
        - The requested package magento/module-swatches-sample-data could not be found in any 
    ....
      Problem 20
        - The requested package magento/module-sales-rule-sample-data could not be found in any version, there may be a typo in the package name.
    
    Potential causes:
     - A typo in the package name
     - The package is not available in a stable-enough version according to your minimum-stability setting
       see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
    
    Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
    
    Installation failed, reverting ./composer.json to its original content.
    There is an error during sample data deployment.
    
    [ec2-user@ip-1***30 20151229141720]$ composer require magento/sample-data:~100.0.1
    ./composer.json has been updated
    Loading composer repositories with package information
    Updating dependencies (including require-dev)
    Your requirements could not be resolved to an installable set of packages.
    
      Problem 1
        - The requested package magento/sample-data could not be found in any version, there may be a typo in the package name.
    
    Potential causes:
     - A typo in the package name
     - The package is not available in a stable-enough version according to your minimum-stability setting
       see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
    
    Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
    
    Installation failed, reverting ./composer.json to its original content.
    
    
    opened by 0m3r 5
  • Fix for incorrect magento2 sample data

    Fix for incorrect magento2 sample data

    Issue: Sample data widgets were not loading on non anchor sample categories as these were marked as anchor categories in sample data

    Fix: This fixes sample data to point to correct category type.

    e.g magento2-sample-data/app/code/Magento/ConfigurableSampleData/fixtures/categories.csv shows that category "Women" is not an anchor category, yet magento2-sample-data/app/code/Magento/WidgetSampleData/fixtures/cmsblock.csv mentions it as an anchor category causing it not to get loaded successfully

    2.4.1-develop 
    opened by nkvp 4
  • MAGETWO-80581: Merge code from 2.2.0 release branches into

    MAGETWO-80581: Merge code from 2.2.0 release branches into "2.2-develop" branches

    Scope

    Task

    • MAGETWO-80581 Merge code from 2.2.0 release branches into "2.2-develop" branches

    Bamboo CI Builds

    Related Pull Requests

    https://github.com/magento/magento2ce/pull/1538 https://github.com/magento/magento2ee/pull/729 https://github.com/magento/magento2b2b/pull/286 https://github.com/magento/magento2-sample-data-ee/pull/22

    Checklist

    • [x] PR is green on M2 Quality Portal
    • [x] Jira issues have accurate summary, meaningful description and have links to relevant documentation at the story/task level
    • [ ] Semantic Version build failure is approved by architect (not applicable)
    • [x] Pull Request approved by architect @kandy
    • [x] Pull Request quality review performed by @vgoncharenko
    • [x] All unstable functional acceptance tests are isolated (if any)
    • [x] All linked Zephyr tests are approved by PO and have Ready to Use status
    • [ ] Travis CI build is green (for mainline CE only)
    • [ ] Jenkins Extended FAT build is green
    approved 
    opened by paliarush 3
  • Sample data return error Setup version for module 'Magento_CustomerSampleData' is not specified

    Sample data return error Setup version for module 'Magento_CustomerSampleData' is not specified

    This is what I was do. cd /var/www/magento/current rm -rf /var/www/magento/current/.* rm -rf /var/www/magento/current/* git clone https://github.com/magento/magento2.git ./ git checkout develop find . -type d -exec chmod 770 {} ; && find . -type f -exec chmod 660 {} ; && chmod u+x bin/magento composer config repositories.magento composer http://packages.magento.com composer install mysql -uroot -ptmp -h mysql -e "DROP DATABASE magento2; CREATE DATABASE magento2;"; php -d xdebug.max_nesting_level=500 -f bin/magento setup:install --base-url="http://magento2.hostname/" --backend-frontname=admin --db-host=mysql --db-name="magento2" --db-user="root" --db-password="tmp" --admin-firstname=Local --admin-lastname=Admin [email protected] --admin-user="admin" --admin-password="123123aa" --language=en_US --currency=USD --timezone=America/Chicago rm -rf ~/sample-data git clone https://github.com/magento/magento2-sample-data.git ~/sample-data git checkout develop cd ~/sample-data/dev/tools php build-sample-data.php --ce-source="/var/www/magento/current" cd /var/www/magento/current php -d xdebug.max_nesting_level=500 bin/magento setup:upgrade bin/magento setup:di:compile chown -R www-data:www-data ./*

    This is what I get when its finish: cat var/report/873018421313 a:4:{i:0;s:70:"Setup version for module 'Magento_CustomerSampleData' is not specified";i:1;s:3320:"#0 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Module/DbVersionInfo.php(56): Magento\Framework\Module\DbVersionInfo->isModuleVersionEqual('Magento_Custome...', '2.0.0') #1 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Module/DbVersionInfo.php(79): Magento\Framework\Module\DbVersionInfo->isSchemaUpToDate('Magento_Custome...') #2 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php(55): Magento\Framework\Module\DbVersionInfo->getDbVersionErrors() #3 [internal function]: Magento\Framework\Module\Plugin\DbStatusValidator->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http)) #4 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Interception/Chain/Chain.php(68): call_user_func_array(Array, Array) #5 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Interception/Chain/Chain.php(63): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'front-controlle...') #6 /var/www/magento/2016-02-09-10-43/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php(73): Magento\Framework\Interception\Chain\Chain->Magento\Framework\Interception\Chain{closure}(Object(Magento\Framework\App\Request\Http)) #7 [internal function]: Magento\PageCache\Model\App\FrontController\BuiltinPlugin->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http)) #8 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Interception/Chain/Chain.php(68): call_user_func_array(Array, Array) #9 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Interception/Interceptor.php(136): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'front-controlle...') #10 /var/www/magento/2016-02-09-10-43/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php(55): Magento\Framework\App\FrontController\Interceptor->Magento\Framework\Interception{closure}(Object(Magento\Framework\App\Request\Http)) #11 [internal function]: Magento\PageCache\Model\App\FrontController\VarnishPlugin->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http)) #12 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/Interception/Interceptor.php(141): call_user_func_array(Array, Array) #13 /var/www/magento/2016-02-09-10-43/var/generation/Magento/Framework/App/FrontController/Interceptor.php(26): Magento\Framework\App\FrontController\Interceptor->___callPlugins('dispatch', Array, Array) #14 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/App/Http.php(115): Magento\Framework\App\FrontController\Interceptor->dispatch(Object(Magento\Framework\App\Request\Http)) #15 /var/www/magento/2016-02-09-10-43/lib/internal/Magento/Framework/App/Bootstrap.php(258): Magento\Framework\App\Http->launch() #16 /var/www/magento/2016-02-09-10-43/pub/index.php(37): Magento\Framework\App\Bootstrap->run(Object(Magento\Framework\App\Http)) #17 {main}";s:3:"url";s:1:"/";s:11:"script_name";s:10:"/index.php";}

    opened by belovanton 3
  • Installation using composer breaks with magento2 latest develp version

    Installation using composer breaks with magento2 latest develp version

    I am trying to install this sample data using the 'bin/magento sampledata:deploy' command and it breaks because it says the requirements cannot be fulfilled. This is the log I get:

    Your requirements could not be resolved to an installable set of packages.

    Problem 1 - The requested package magento/module-msrp-sample-data could not be found in any version, there may be a typo in the package name. Problem 2 - The requested package magento/module-catalog-rule-sample-data could not be found in any version, there may be a typo in the package name. Problem 3 - The requested package magento/module-offline-shipping-sample-data could not be found in any version, there may be a typo in the package name. Problem 4 - The requested package magento/module-grouped-product-sample-data could not be found in any version, there may be a typo in the package name. Problem 5 - The requested package magento/module-bundle-sample-data could not be found in any version, there may be a typo in the package name. Problem 6 - The requested package magento/module-sales-rule-sample-data could not be found in any version, there may be a typo in the package name. Problem 7 - The requested package magento/module-configurable-sample-data could not be found in any version, there may be a typo in the package name. Problem 8 - The requested package magento/module-product-links-sample-data could not be found in any version, there may be a typo in the package name. Problem 9 - The requested package magento/module-widget-sample-data could not be found in any version, there may be a typo in the package name. Problem 10 - The requested package magento/module-cms-sample-data could not be found in any version, there may be a typo in the package name. Problem 11 - The requested package magento/module-theme-sample-data could not be found in any version, there may be a typo in the package name. Problem 12 - The requested package magento/module-review-sample-data could not be found in any version, there may be a typo in the package name. Problem 13 - The requested package magento/module-customer-sample-data could not be found in any version, there may be a typo in the package name. Problem 14 - The requested package magento/module-tax-sample-data could not be found in any version, there may be a typo in the package name. Problem 15 - The requested package magento/module-downloadable-sample-data could not be found in any version, there may be a typo in the package name. Problem 16 - The requested package magento/module-wishlist-sample-data could not be found in any version, there may be a typo in the package name. Problem 17 - The requested package magento/module-swatches-sample-data could not be found in any version, there may be a typo in the package name. Problem 18 - The requested package magento/module-catalog-sample-data could not be found in any version, there may be a typo in the package name. Problem 19 - The requested package magento/module-sales-sample-data could not be found in any version, there may be a typo in the package name.

    Potential causes:

    • A typo in the package name
    • The package is not available in a stable-enough version according to your minimum-stability setting see https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion for more details.

    Read http://getcomposer.org/doc/articles/troubleshooting.md for further common problems.

    opened by degaray 3
  • Patial sample data installation with no images, when using Magento v2.4.4

    Patial sample data installation with no images, when using Magento v2.4.4

    When using installing sample-data on Magento 2.4.4, this only install few catalog products with no images. (Products which get installed are under Gear)

    Even after following the steps in below documentation still unable to the sample-date working. https://devdocs.magento.com/guides/v2.4/install-gde/install/sample-data-after-composer.html

    Current sample data version used - 100.4.*

    Also noticed that pub/media/catalog/product is empty and pub/media/wysiwyg is not created.

    Logs doesn't show any errors.

    Any help is much appreciated, Thank you

    opened by antfdo 1
  • Configurable SampleData Products not visible

    Configurable SampleData Products not visible

    Hi there,

    I cloned the repository and copied configurable sample data to my magento instance. After setup:upgrade I see the patch applied and in import history a job in status 'processing' but no products. What am I missing here?

    Thanks in advance

    Michael

    opened by luemic 0
  • Can we make this a metapackage?

    Can we make this a metapackage?

    Having this as a meta package helps keep the composer.json file clean and clutter-free.

    "magento/module-sample-data": "^100.4"
    

    vs

    "magento/module-bundle-sample-data": "100.4.*",
    "magento/module-catalog-rule-sample-data": "100.4.*",
    "magento/module-catalog-sample-data": "100.4.*",
    "magento/module-cms-sample-data": "100.4.*",
    "magento/module-configurable-sample-data": "100.4.*",
    "magento/module-customer-balance-sample-data": "100.4.*",
    "magento/module-customer-sample-data": "100.4.*",
    "magento/module-downloadable-sample-data": "100.4.*",
    "magento/module-gift-card-sample-data": "100.4.*",
    "magento/module-gift-registry-sample-data": "100.4.*",
    "magento/module-grouped-product-sample-data": "100.4.*",
    "magento/module-msrp-sample-data": "100.4.*",
    "magento/module-multiple-wishlist-sample-data": "100.4.*",
    "magento/module-offline-shipping-sample-data": "100.4.*",
    "magento/module-product-links-sample-data": "100.4.*",
    "magento/module-review-sample-data": "100.4.*",
    "magento/module-sales-rule-sample-data": "100.4.*",
    "magento/module-sales-sample-data": "100.4.*",
    "magento/module-swatches-sample-data": "100.4.*",
    "magento/module-target-rule-sample-data": "100.4.*",
    "magento/module-tax-sample-data": "100.4.*",
    "magento/module-theme-sample-data": "100.4.*",
    "magento/module-widget-sample-data": "100.4.*",
    "magento/module-wishlist-sample-data": "100.4.*",
    "magento/sample-data-media": "100.4.*"
    

    And also publish this under repo.magento.com? So that we can directly do a composer require magento/module-sample-data instead of running the bin/magento sampledata:deploy command.

    opened by drpayyne 0
  • Remove the real domain name

    Remove the real domain name

    Domains such as example.com and example.org are maintained for documentation purposes. These domains may be used as illustrative examples in documents without prior coordination. They are not available for registration or transfer.

    https://www.iana.org/domains/reserved

    opened by omaxmo 0
Releases(2.4.5-p1)
Owner
Magento
Magento
MailChimp for Magento 2. Syncs all data (subscriber, customers, orders, products) and enables marketing automation with email campaigns, automations, ads, postcards and more.

MailChimp for Magento 2. Syncs all data (subscriber, customers, orders, products) and enables marketing automation with email campaigns, automations, ads, postcards and more.

Mailchimp 139 Sep 9, 2022
A tool that allows to quickly export data from Magento 1 and Magento 2 store and import it back into Magento 2

Simple Import / Export tool A tool that allows to quickly export data from Magento 1 and Magento 2 store and import it back into Magento 2. Table data

EcomDev B.V. 51 Dec 5, 2022
A high-performance license server system service for creating and managing products, major versions, and software licenses for the purpose of selling installable software products.

A high-performance license server system service for creating and managing products, major versions, and software licenses for the purpose of selling installable software products. Comes with a SDK and command-line tool. Works anywhere that PHP runs.

CubicleSoft 32 Dec 5, 2022
Get mobile app version and other related data from Google Play Store, Apple App Store and Huawei AppGallery

Mobile App Version Get mobile app version and other related data from Google Play Store, Apple App Store and Huawei AppGallery. Installation Add to co

Omer Salaj 11 Mar 15, 2022
Fly50W is a new language which helps you build simple apps using more than 500k lines of code easily.

Fly50W is a new language which helps you build simple apps using more than 500k lines of code easily. Installation

null 4 Jun 22, 2022
This Magento extension provides a Real Full Page Caching for Magento powered by Varnish with support of Session-Based information caching (Cart, Customer Accounts, ...) via ESI includes

This Magento extension provides a Real Full Page Caching (FPC) for Magento powered by Varnish with support of Session-Based information caching (Cart, Customer Accounts, ...) via ESI includes

Hugues Alary 95 Feb 11, 2022
Automatically load the next page of products in Magento. Easy to install and configure, this module works 100% out of the box with vanilla Magento 1.9.x and earlier.

Automatically load the next page of products in Magento. Easy to install and configure, this module works 100% out of the box with vanilla Magento 1.9.x and earlier.

Strategery 123 Nov 20, 2021
A highly compressed version of the magento 1.9 sample data and a script to create it.

Compressed Magento 1.9 Sample Data The following variations are available: 65M compressed-magento-sample-data-1.9.2.4.tgz 64M compressed-magento-sampl

Vinai Kopp 120 Sep 9, 2022
Rocket Web Prime theme based on Magento Blank that includes our most common customizations.

RW Prime - Magento 2 boilerplate theme RW Prime theme is based on Magento Blank and includes our most common customizations that we make on the majori

Rocket Web FED 37 Aug 8, 2022
(Magento 2) Count Quantity of Products Sold

It counts how many items were sold based on the product ID and lists the quantity on the product page.

Mateus Santin Junior 2 Mar 28, 2022
Magento 2 module to quickly acces products, orders and customer from admin menu

Magento 2 module to quickly access product, order or customer views Introduction The Magento 2 backend can be sluggish. Ever wanted to access a produc

null 1 Dec 3, 2021
Magento 2 Product Allocation extension allows the to admin manage all products in an order

Magento 2 Product Allocation extension allows the to admin manage all products in an order, making sure that products can only be moved to cart if sufficient allocation is available.

Yodo1117 1 Jan 1, 2022
DiscordLookup | Get more out of Discord with Discord Lookup! Snowflake Decoder, Guild List with Stats, Invite Info and more...

DiscordLookup Get more out of Discord with Discord Lookup! Snowflake Decoder, Guild List with Stats, Invite Info and more... Website Getting Help Tool

Felix 69 Dec 23, 2022
Ratio plugin is a luck plugin. The more lucky you are, the more you win!

Ratio Ratio plugin is a luck plugin. The more lucky you are, the more you win Features When you break a block (Cobblestone), it gives/puts you somethi

Ali Tura Çetin 2 Apr 25, 2022
This tool check syntax of PHP files faster than serial check with fancier output.

PHP Parallel Lint This application checks syntax of PHP files in parallel. It can output in plain text, colored text, json and checksyntax formats. Ad

PHP Parallel lint 202 Dec 22, 2022
PHP Parallel Lint - This tool check syntax of PHP files faster than serial check with fancier output

PHP Parallel Lint This application checks syntax of PHP files in parallel. It can output in plain text, colored text, json and checksyntax formats. Ad

PHP Parallel lint 156 Apr 24, 2022