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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

This package is a wrapper for our PHP library, which you can find here: <https://github.com/vonage/vonage-php-sdk-core>

> Please note that all requirements for this package will match the core library, including platform requirements such
> as a minimum requirement for PHP 7.4

This package exists to separate the Vonage functionality from the HTTP Client. If you can't install this package due to a conflict with the `guzzle6-adapter` package, you can instead install:

* The main package `vonage/client-core`
Expand Down
26 changes: 15 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,38 @@
"license": "MIT",
"type": "library",
"authors": [
{
"name": "James Seconde",
"email": "jim.seconde@vonage.com",
"role": "PHP Developer Advocate"
},
{
"name": "Tim Lytle",
"email": "tim@nexmo.com",
"role": "Developer",
"homepage": "http://twitter.com/tjlytle"
"homepage": "https://twitter.com/tjlytle"
},
{
"name": "Michael Heap",
"email": "michael.heap@vonage.com",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

replace with
"homepage": "https://www.twitter.com/mheap"

"role": "Developer"
"role": "Developer",
"homepage": "https://www.twitter.com/mheap"
},
{
"name": "Lorna Mitchell",
"email": "lorna.mitchell@vonage.com",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"role": "Developer"
"role": "Developer",
"homepage": "https://lornajane.net/"
},
{
"name": "Chris Tankersley",
"email": "chris.tankersley@vonage.com",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"role": "Developer"
"role": "Developer",
"homepage": "https://twitter.com/dragonmantank"
}
],
"support": {
"email": "devrel@nexmo.com"
"email": "devrel@vonage.com"
},
"require": {
"php": ">=7.2",
"php": "~7.4 || ~8.0 || ~8.1",
"guzzlehttp/guzzle": "^7.0",
"vonage/client-core": "^2.0"
"vonage/client-core": "^3.0"
}
}