mageprince / magento2-FAQ

This module adds an easy way to use FAQ Section to your Magento store with jQuery Accordion. In this module, admin can add and update FAQ. Admin can also create FAQ group with group icon.
57 stars 37 forks source link

Not available via composer #50

Closed eBusinessAtlantique closed 2 years ago

eBusinessAtlantique commented 2 years ago

Hello Package is not available via composer with composer require prince/module-faq Thanks for the help

mageprince commented 2 years ago

Dear @eBusinessAtlantique, Thank you for your report.

Please check the below points:

1. Make sure that the repo.Magento.com repository exists in your composer.json file at the root of Magento:

"repositories": [
    {
        "type": "composer",
        "url": "https://repo.magento.com/"
    }
]

2. Please check that you have the correct public and private keys in the auth.json file.

Step to check keys:

a. log in to Magento marketplace account (Use the same account where you buy this extension) https://developer.magento.com/customer/account/

b. Go to My Profile -> My Products -> Access Keys

c. Here you can find public and private keys. If you can't find any keys create a new one.

d. Now check that you have the same public and private key in auth.json(You can find this file at the root folder of Magento)

Use public key as the username and private key as password

auth.json should look like this:

    {
        "http-basic": {
            "repo.magento.com": {
                "username": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
                "password": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
            }
        }
    }

Now please run the composer require command.

Furthermore, Please follow this Magento Marketplace doc carefully to install the module: https://devdocs.magento.com/cloud/howtos/install-components.html