Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Amazon Product Advertising API v5 #36

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ PHP library to perform product lookup and searches using the Amazon Product API.

## Installation

This library requires the [SimpleXML](http://php.net/manual/en/book.simplexml.php) and [Curl](http://php.net/manual/en/book.curl.php) extensions to be installed and uses PHP 7+ . Installation is simple using [Composer](https://composer.io):
This library requires the [SimpleXML](http://php.net/manual/en/book.simplexml.php) and [Curl](http://php.net/manual/en/book.curl.php) extensions to be installed and uses PHP 7+ . Installation is simple using [Composer](https://getcomposer.org/):

```shell
composer require marcl/amazonproductapi
```

### Amazon Product API
It also assumes that you have some basic knowledge of Amazon's Product API and have set up an Amazon Associate account see: [Amazon Product API Set Up](http://docs.amazonwebservices.com/AWSECommerceService/2011-08-01/GSG/GettingSetUp.html).
It also assumes that you have some basic knowledge of Amazon's Product API and have set up an Amazon Associate account see: [Amazon Product API Set Up](https://webservices.amazon.com/paapi5/documentation/register-for-pa-api.html).

You'll need an AWS key, secret key, and associate tag. Ensure that you keep these safe!

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "marcl/amazonproductapi",
"description":
"PHP library to perform product lookup and searches using the Amazon Product API.",
"version": "3.0.2",
"PHP library to perform product lookup and searches using the Amazon Product Advertising API 5.0.",
"type": "library",
"keywords": ["amazon", "product", "api"],
"homepage": "https://github.com/MarcL/AmazonProductAPI/",
Expand All @@ -20,7 +19,8 @@
"issues": "https://github.com/MarcL/AmazonProductAPI/issues"
},
"require-dev": {
"phpunit/phpunit": "6.1.*"
"php": ">=7.3.0",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
Expand Down
Loading