bestit / amazonpay4oxid
This is the Amazon Pay module for the OXID eShop.
Installs: 259 704
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 10
Forks: 14
Open Issues: 9
Type:oxideshop-module
Requires
- php: >=5.3
- ext-curl: *
- ext-openssl: *
- lib-curl: >=7.26.0
- lib-openssl: >=1.0.1
- amzn/amazon-pay-sdk-php: ~3.4.1
- monolog/monolog: ^1.23
- paragonie/random_compat: <9.99
Requires (Dev)
- dev-develop
- 3.6.8
- 3.6.7
- 3.6.6
- 3.6.5
- 3.6.4
- 3.6.3
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.4
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.2
- 3.0.1
- 3.0.0
- dev-master
- dev-feature/OXAP-352-remove-amazon-loging-setting
- dev-feature/OXAP-343-use-random-bytes
- dev-feature/OXAP-311-add-key-for-cronjob
- dev-bugfix/OXAP-311-optimization-to-the-controllers
- dev-release/3.7
- dev-feature/OXAP-272-added-module-specific-config
- dev-feature/OXAP-276-fixed-deploy-package-script
- dev-feature/OXAP-2550-local-dev-setup
- dev-feature/OXAP-243-psr-logging
- dev-feature/OXAP-243-added-logs-module
- dev-feature/OXAP-243-add-module-logging
This package is auto-updated.
Last update: 2024-10-21 15:27:14 UTC
README
Pay with Amazon is fast, easy and secure and can help you add new customers, increase sales, and reduce fraud costs. It provides a seamless experience for your customers. All buyer interactions take place in widgets, so they never leave your site. Customers simply log in using their Amazon credentials, select a shipping address and payment method, and confirm their order
The Login and Pay with Amazon for Oxideshop extension adds two components to your OxideShop installation:
- A ‘Login with Amazon’ module that allows customers to seamlessly register and log in using their Amazon account credentials.
- A payments module ‘Pay with Amazon’ that allows customers to complete the checkout using the payment methods stored in their Amazon account.
Enable Login and Pay with Amazon on your OXID eShop, you will benefit from:
- Online identity
Your customers save time and hassle by using their Amazon credentials to login and pay; so you increase repeat buyers by offering a trusted and convenient payment method.
- A smooth payment process
Your customers won’t leave your website to login or enter their payment/shipping information; so you capture sales from buyers who are reluctant to enter their information.
You will need to create an Amazon Payments Seller Account to use the Pay with Amazon for OXID eShop extension. This account is where you will receive payments, update your account settings and view settlement reports.
Development Setup
In order to run a oxid 6 instance locally to develop or test features, you have to run the following steps:
Starting the docker stack
$ docker-compose up -d
The first time will build the images and this could take some time!
Build the instance
$ docker-compose exec web /bin/bash -c "chmod +x ./scripts/build.sh && ./scripts/build.sh <version> dev"
This command will build an local oxid with the given version (use for example 5.3
, for version lower than 6.0 or dev-b-6.0-ce
, for version from 6.0 on) instance with installed demodata and the symlinked module.
You are now ready to develop or tests your changes. The shop will be accessible via the url http://localhost:8100 and
the admin will be reachable via http://localhost:8100 or with https under https://localhost:4444 and the credentials admin:admin.
Running the tests
Just run the following command:
$ docker-compose exec web /bin/bash -c "chmod +x ./scripts/build.sh && ./scripts/build.sh <version>"
This will create a fresh instance and runs the tests. May also want to login to your previous build test instance and run the test there just access the docker container by running the following command.
$ docker-compose exec web bash
Now you are logged in and are able to run the test from the instance vendor dir vendor/bin/runtests
.