Skip to content

Commit fc135ea

Browse files
author
Martin Steel
committed
Update Readme for v1.3.2
1 parent dd438dd commit fc135ea

File tree

4 files changed

+28
-14
lines changed

4 files changed

+28
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,9 @@
1919

2020
#### 1.3.1 (November 13th, 2012)
2121

22-
* Updated `is_valid_msisdn()` method to handle 9-digit phone numbers, e.g. Norway. [JI]
22+
* Updated `is_valid_msisdn()` method to handle 9-digit phone numbers, e.g. Norway. [JI]
23+
24+
#### 1.3.2 (December 18th, 2015)
25+
26+
* Switched license to MIT rather than ISC as people haven't heard of ISC and they're very similar
27+
* Added account type to balance checks.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,11 @@ This will return:
120120
[symbol] => £
121121
[balance] => 351.91
122122
[code] => GBP
123+
[account_type] => PAYG
123124
)
124125

126+
Account Type can be either PAYG or Invoice.
127+
125128
### Handling Errors
126129

127130
The Clockwork wrapper will throw a `ClockworkException` if the entire call failed.
@@ -236,7 +239,7 @@ Try a search term like "windows php curl root certificates" or "ubuntu update ro
236239

237240
# License
238241

239-
This project is licensed under the ISC open-source license.
242+
This project is licensed under the MIT open-source license.
240243

241244
A copy of this license can be found in license.txt.
242245

class-ClockworkException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @package Clockwork
66
* @copyright Mediaburst Ltd 2012
7-
* @license ISC
7+
* @license MIT
88
* @link http://www.clockworksms.com
99
*/
1010

license.txt

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
Copyright (c) 2011 - 2012, Mediaburst Ltd <hello@mediaburst.co.uk>
1+
Copyright (c) 2015, Mediaburst Ltd <hello@clockworksms.com>
22

3-
Permission to use, copy, modify, and/or distribute this software for any
4-
purpose with or without fee is hereby granted, provided that the above
5-
copyright notice and this permission notice appear in all copies.
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
69

7-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

0 commit comments

Comments
 (0)