Skip to content

Commit 04d7c02

Browse files
committed
Merge pull request #13 from messagebird/sam/verify-version-bump
Include the Verify API as a stable resource
2 parents 2adae97 + 3e4330d commit 04d7c02

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MessageBird's REST API for PHP
33
This repository contains the open source PHP client for MessageBird's REST API. Documentation can be found at: https://www.messagebird.com/developers/php
44

55
[![Build Status](https://travis-ci.org/messagebird/php-rest-api.svg?branch=master)](https://travis-ci.org/messagebird/php-rest-api)
6-
[![Latest Stable Version](https://poser.pugx.org/messagebird/php-rest-api/v/stable.svg)](https://packagist.org/packages/messagebird/php-rest-api)
6+
[![Latest Stable Version](https://poser.pugx.org/messagebird/php-rest-api/v/stable.svg)](https://packagist.org/packages/messagebird/php-rest-api)
77
[![License](https://poser.pugx.org/messagebird/php-rest-api/license.svg)](https://packagist.org/packages/messagebird/php-rest-api)
88

99
Requirements
@@ -19,13 +19,13 @@ Installation
1919
####Composer installation
2020

2121
- [Download composer](https://getcomposer.org/doc/00-intro.md#installation-nix)
22-
- Add the `"messagebird/php-rest-api": "1.1.x"` into the `require` section of your `composer.json`.
22+
- Add the `"messagebird/php-rest-api": "1.2.x"` into the `require` section of your `composer.json`.
2323
- Run `composer install`.
2424

2525
```
2626
{
2727
"require": {
28-
"messagebird/php-rest-api": "1.1.x"
28+
"messagebird/php-rest-api": "1.2.x"
2929
}
3030
}
3131
```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "messagebird/php-rest-api",
33
"description": "MessageBird REST API client for PHP",
4-
"version": "1.1.11",
4+
"version": "1.2.0",
55
"type": "library",
66
"homepage": "https://github.com/messagebird/php-rest-api",
77
"license": "BSD-2-Clause",

src/MessageBird/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Client
1212

1313
const ENDPOINT = 'https://rest.messagebird.com';
1414

15-
const CLIENT_VERSION = '1.1.11';
15+
const CLIENT_VERSION = '1.2.0';
1616

1717
/**
1818
* @var string

0 commit comments

Comments
 (0)