skip to Main Content

I want to install eway magento 2 extension in my magento 2 website but during installation it asking me to upgrade composer. can someone please let me know how to upgrade composer?
I want to install eway rapid extension in magento 2.3 which is free enxtension in magento marketplace.

Thanks

3

Answers


  1. In the Magento 2.3 directory, run the command (note, please ensure you are using the latest version)

    composer require eway/eway-rapid-magento2 3.0.1
    

    Then ensure everything is updated with

    composer update
    

    Enable the module with the following command:

    bin/magento module:enable --clear-static-content Eway_DirectConnection Eway_SharedPage Eway_SecureFields Eway_IFrame Eway_TransparentRedirect Eway_EwayRapid
    

    Install the module by running

    bin/magento setup:upgrade
    

    Run the compile command to finish:

    bin/magento setup:di:compile
    
    Login or Signup to reply.
  2. The instructions can vary depending on your operating system, but the Composer help page for upgrading provides the following:

    php composer.phar self-update
    
    Login or Signup to reply.
  3. I face same problem Marketplace download Installation not working.

    Follow Composer Installation:

    1. In the Magento 2 directory, run the command (note, please ensure you are using the latest version)

    composer require eway/eway-rapid-magento2 3.0.2

    1. Then ensure everything is updated with

    composer update

    1. Enable the module with the following command:

    bin/magento module:enable –clear-static-content Eway_DirectConnection
    Eway_SharedPage Eway_SecureFields Eway_IFrame Eway_TransparentRedirect
    Eway_EwayRapid

    1. Install the module by running

    bin/magento setup:upgrade

    1. Run the compile command to finish:

    bin/magento setup:di:compile

    main link

    Hope someone may be get help

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search