Skip to content
Merged
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This API client covers all functions of API V2 such as:

If You want to send transactional messages in rich format please use new [API V3 client](https://github.com/FreshMail/php-api-client).

## Installation via composer (compatible with PHP >=8.0)

Add via composer:

composer require freshmail/rest-api:^4.0

## Installation via composer (compatible with PHP >=7.0)

Add via composer:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
}
],
"require": {
"php": ">=7.0",
"php": ">=7.0||^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^1.1",
"monolog/monolog": "^2",
"guzzlehttp/guzzle": "~7.2"
"psr/log": "^1.1|^2.0|^3.0",
"monolog/monolog": "^2.0|^3.0",
"guzzlehttp/guzzle": "~7.2|^7.3||^7.4"
},
"autoload": {
"psr-4": {
Expand Down