Please note, if the extension was purchased from Magento Marketplace, referrer to commerce marketplace composer installation.
We use Composer to manage components and their dependencies. Our composer packages are hosted by Private Packagist, which is fast, reliable and secure composer repository for PHP packages.
Installation Steps
- Composer Information
- Setup Authentication
- Install Extension Filesystem
- Post Installation
- Configure You Connector
After you purchase the extension, a private repository will be created, and you’ll be provided with repository name and authentication token to access it.
Composer Information
Add your private repository to the composer.json and setup authenticate to access the required packages.
Add using composer config command:
composer config repositories.private-packagist composer https://softcommerce.repo.packagist.com/repository-name/
Or manually edit the composer.json
file.
Add the following custom repository to your project’s composer.json:
{
"repositories": [
{"type": "composer", "url": "https://softcommerce.repo.packagist.com/repository-name/"}
]
}
Setup Authentication
Setup authentication in the following three ways:
- Store the authentication credentials in your global Composer auth.json with the command below.
composer config --global --auth http-basic.softcommerce.repo.packagist.com token you-access-token
- Store the authentication credentials using the environment variable:
COMPOSER_AUTH='{"http-basic": {"softcommerce.repo.packagist.com": {"username": "token", "password": "you-access-token"}}}'
- Interactively during composer command. Composer will automatically prompt you to enter authentication credentials once you run a Composer command that tries to access Private Packagist if no authentication is configured. This will then store the credentials in your global Composer auth.json.
Authentication required (softcommerce.repo.packagist.com):
Username: your-order-number
Password: you-access-token
Install Extension Filesystem
Magento Open Source:
composer require softcommerce/mage2plenty-os
Adobe Commerce:
composer require softcommerce/mage2plenty-ac
To install extension compatible with specific Magento version, append appropriate version constraint. For example:
composer require softcommerce/mage2plenty-os ~1.1.0
Referrer to Magento Version Compatibility for a list of compatible Magento versions.
Post Installation
In production mode:
bin/magento maintenance:enable
bin/magento setup:upgrade
bin/magento deploy:mode:set production
bin/magento maintenance:disable
In development mode:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
Configure You Connector
Get started with system configuration