You can install this module in various ways:
-
Download the MagentoConnect Package from our site and upload it into your own Magento Downloader application.
-
Download the Source Sackage from our site, extract the files and upload the files to your Magento root. Make sure to flush the Magento cache. Make sure to logout once you're done.
-
Use this Repository Package. Extract this entire repository to somewhere on your Magento server and use
composer
ormodman
to install the Magento module. Alternatively, use this package to create your own private repository.
Please note that this repository package is based on our own internal Yireo Git environment, but it does not contain any versioning information.
We include composer
instructions for all our free extensions. However, with paid subscriptions,
using composer
is a bit more difficult, because there is no public repository to make use of.
There are ways though: Make sure to use an up-to-date composer
version (2015-09-25 or later) because
we are making use of the new path
type.
Use composer
to install this extension. First make sure to initialize composer with the right settings:
composer -n init
composer install --no-dev
Next, download this extension folder, including the source
folder and the composer.json
to a folder
(for instance magento_dir/../extensions/yireo/yireo_emailtester
) outside of your Magento root:
magento_dir/../extensions/yireo/yireo_emailtester
Next, modify your local composer.json file:
{
"require": {
"yireo/yireo_emailtester": "dev-master",
"magento-hackathon/magento-composer-installer": "*"
},
"repositories":[
{
"packagist": false
},
{
"type":"composer",
"url":"http://packages.firegento.com"
},
{
"type":"path",
"url":"/magento_dir/../extensions/yireo/yireo_emailTester"
}
],
"extra":{
"magento-root-dir":"/magento_dir",
"magento-deploystrategy":"copy"
}
}
Make sure to change the url
value of the path
type if you are using another folder.
Also make sure to set the magento-root-dir
properly. Test this by running:
composer update --no-dev
Done.