Installation
Installation
Install via Zip File
Download and unzip package from Magento’s marketplace
Using SSH or sFTP move folders /app/code and /lib to Magento’s root folder
Using a shell on Magento’s root folder, the following commands must be executed:
$ php bin/magento module:enable Extend_Warranty
$ php bin/magento setup:upgrade
$ php bin/magento cache:clean
Install via Composer
To install/update the extension with Composer, the following commands must be executed:
Tips
The below guidance is for the extension's master branch. If a custom branch is being installed, replace the "master" portion in "dev-master" with the appropriate branch name.
If you would like to specify a version tag for your installation with Composer, use "#vX.X.X" where X is the version number you would like to force - for example:
composer require extend/module-warranty:dev-master#v2.0.1
For a full list of available tags, see the public repository here.
Magento Version 2.2.X - 2.3.6:
$ composer config repositories.extend git 'https://github.com/helloextend/magento-extension/'
$ composer require extend/module-warranty:dev-master-legacy
$ php bin/magento setup:upgrade
Magento Version 2.3.7 - 2.4.X:
$ composer config repositories.extend git 'https://github.com/helloextend/magento-extension/'
$ composer require extend/module-warranty:dev-master
$ php bin/magento setup:upgrade
Updated 5 months ago