shopgo / aws
A module that integrates AWS SDK into Magento 2
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 3
Open Issues: 0
Type:magento2-module
Requires
- php: ~5.5.0|~5.6.0|~7.0.0
- aws/aws-sdk-php: 3.*
- magento/framework: 100.0.*
This package is not auto-updated.
Last update: 2024-11-09 20:44:54 UTC
README
Contents
Synopsis
A utility module that integrates Magento 2 with AWS.
Overview
AWS module integrates AWS SDK into Magento 2. It provides helper functions that can be used by other modules.
Installation
Below, you can find two ways to install the aws module.
1. Install via Composer (Recommended)
First, make sure that Composer is installed: https://getcomposer.org/doc/00-intro.md
Make sure that Packagist repository is not disabled.
Run Composer require to install the module:
php <your Composer install dir>/composer.phar require shopgo/aws*
2. Clone the aws repository
Clone the aws repository using either the HTTPS or SSH protocols.
2.1. Copy the code
Create a directory for the aws module and copy the cloned repository contents to it:
mkdir -p <your Magento install dir>/app/code/ShopGo/Aws
cp -R <aws clone dir>/* <your Magento install dir>/app/code/ShopGo/Aws
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_Aws
...
Tests
TODO
Contributors
Ammar (ammar@shopgo.me)