Download the PHP package shopgo/currency-import-services without Composer

On this page you can find all versions of the php package shopgo/currency-import-services. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package currency-import-services

Currency Import Services

Dependency Status GitHub version

Contents

Synopsis

This module adds additional currency rate import services to Magento 2.

Overview

With currency import services module, you can import currencies rates with different services such as Yahoo Finance and Google Finance. This is very important, because Magento 2.0's default and only currency import service WebserviceX tends to go down from time to time. And sometimes, it returns empty results for some currencies.

Installation

Below, you can find two ways to install the currency import services module. With the release of Magento 2.0, you'll also be able to install modules using the Magento Marketplaces.

1. Install via Composer

First, make sure that Composer is installed: https://getcomposer.org/doc/00-intro.md

Add the currency import services module repository's URL:

php <your Composer install dir>/composer.phar config repositories.shopgo-cis vcs https://github.com/shopgo/currency-import-services

Run Composer require to install it:

php <your Composer install dir>/composer.phar require shopgo/currency-import-services:~1.0

2. Clone the currency-import-services repository

Clone the currency-import-services repository using either the HTTPS or SSH protocols.

2.1. Copy the code

Create a directory for the currency import services module and copy the cloned repository contents to it:

mkdir -p <your Magento install dir>/app/code/ShopGo/CurrencyImportServices
cp -R <currency-import-services clone dir>/* <your Magento install dir>/app/code/ShopGo/CurrencyImportServices

Update the Magento database and schema

If you added the module to an existing Magento installation, run the following command:

php <your Magento install dir>/bin/magento setup:upgrade

Verify the module is installed and enabled

Enter the following command:

php <your Magento install dir>/bin/magento module:status

The following confirms you installed the module correctly, and that it's enabled:

example
    List of enabled modules:
    ...
    ShopGo_CurrencyImportServices
    ...

Tests

Unit tests can be found in Magento 2 app/code/Magento/Directory/Test/Unit directory.

Contributors

Ammar ([email protected])

License

Open Source License


All versions of currency-import-services with dependencies

PHP Build Version
Package Version
Requires php Version ~5.5.0|~5.6.0|~7.0.0
magento/module-config Version 100.0.*
magento/module-store Version 100.0.*
magento/module-backend Version 100.0.*
magento/module-directory Version 100.0.*
magento/framework Version 100.0.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package shopgo/currency-import-services contains the following files

Loading the files please wait ....