Skip to content
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