diff options
author | Martin Steel <martin@mediaburst.co.uk> | 2015-12-18 15:50:05 +0000 |
---|---|---|
committer | Martin Steel <martin@mediaburst.co.uk> | 2015-12-18 15:50:05 +0000 |
commit | fc135ea52635cbae8d85f180a4bb4a45ab286d25 (patch) | |
tree | c34631549d2a769d3606fc02def4f142def662e5 | |
parent | dd438dd8f2f2eaf01e13b4e20a915143ad817f5e (diff) | |
download | clockwork-php-fc135ea52635cbae8d85f180a4bb4a45ab286d25.zip clockwork-php-fc135ea52635cbae8d85f180a4bb4a45ab286d25.tar.gz clockwork-php-fc135ea52635cbae8d85f180a4bb4a45ab286d25.tar.bz2 |
Update Readme for v1.3.21.3.2
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rwxr-xr-x | class-ClockworkException.php | 2 | ||||
-rw-r--r-- | license.txt | 28 |
4 files changed, 28 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bf60238..93cef81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,4 +19,9 @@ #### 1.3.1 (November 13th, 2012) -* Updated `is_valid_msisdn()` method to handle 9-digit phone numbers, e.g. Norway. [JI]
\ No newline at end of file +* Updated `is_valid_msisdn()` method to handle 9-digit phone numbers, e.g. Norway. [JI] + +#### 1.3.2 (December 18th, 2015) + +* Switched license to MIT rather than ISC as people haven't heard of ISC and they're very similar +* Added account type to balance checks. @@ -120,8 +120,11 @@ This will return: [symbol] => £ [balance] => 351.91 [code] => GBP + [account_type] => PAYG ) +Account Type can be either PAYG or Invoice. + ### Handling Errors 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 # License -This project is licensed under the ISC open-source license. +This project is licensed under the MIT open-source license. A copy of this license can be found in license.txt. diff --git a/class-ClockworkException.php b/class-ClockworkException.php index bf8d63e..522fca5 100755 --- a/class-ClockworkException.php +++ b/class-ClockworkException.php @@ -4,7 +4,7 @@ * * @package Clockwork * @copyright Mediaburst Ltd 2012 - * @license ISC + * @license MIT * @link http://www.clockworksms.com */ diff --git a/license.txt b/license.txt index 382c117..7900903 100644 --- a/license.txt +++ b/license.txt @@ -1,13 +1,19 @@ -Copyright (c) 2011 - 2012, Mediaburst Ltd <hello@mediaburst.co.uk> +Copyright (c) 2015, Mediaburst Ltd <hello@clockworksms.com> -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. |