Skip to content

Commit 3450a17

Browse files
authored
Updated guzzle to 7 (#68)
* Updated guzzle to 7 * updated readme and composer.json * dropped old php versions from travis
1 parent ec56b80 commit 3450a17

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
dist: trusty
22
language: php
33
php:
4-
- '5.5'
5-
- '5.6'
6-
- '7.0'
7-
- '7.1'
84
- '7.2'
95
- '7.3'
106
install: composer install

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@ PHP Client library for Bandwidth's Phone Number Dashboard (AKA: Dashboard, Iris)
2121
| 2.4.0 | Added Emergency Calling Notification, Emergeny Notification Group, Emergency Notification Endpoint, and Alternate End User Identity methods |
2222
| 2.5.0 | Added `PortOutPasscode` for TnOption orders |
2323
| 2.5.1 | Fixed grabbing of response header for file uploads |
24+
| 3.0.0 | Updated to guzzle 7. This version no longer supports verisons of PHP less than 7.2. Older versions of this package will still work on PHP versions less than 7.2 |
2425

2526
## Supported PHP Versions
2627

2728
| Version | Support Level |
2829
|:-------------------------------|:-------------------------|
29-
| 5.5 | Supported |
30-
| 5.6 | Supported |
31-
| 7.0 | Supported |
32-
| 7.1 | Supported |
30+
| 5.5 | Unsupported |
31+
| 5.6 | Unsupported |
32+
| 7.0 | Unsupported |
33+
| 7.1 | Unsupported |
3334
| 7.2 | Supported |
3435
| 7.3 | Supported |
3536

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"description": "Bandwidth's Iris SDK for PHP",
55
"keywords": ["iris","sdk","php"],
66
"homepage": "http://dev.bandwidth.com",
7-
"reference": "v2.5.3",
7+
"reference": "v3.0.0",
88
"license": "MIT",
99
"authors": [
1010
],
1111
"require": {
12-
"php": ">=5.5",
13-
"guzzlehttp/guzzle": "~6.0"
12+
"php": ">=7.2",
13+
"guzzlehttp/guzzle": "~7.0"
1414
},
1515
"require-dev": {
1616
"phpunit/phpunit": "~4.7"

0 commit comments

Comments
 (0)