Skip to content

Commit 4eede5c

Browse files
committed
Added support for php 8.0 and 8.1
- Updated composer dependencies - Added support for php > 8 while maintaining backward compatibility with php7 - Minor updates to readme - Added .idea to gitignore
1 parent 11f67a1 commit 4eede5c

File tree

9 files changed

+101
-208
lines changed

9 files changed

+101
-208
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ build
22
docs
33
vendor
44
coverage
5+
.idea

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/movesms.iml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.idea/php.xml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Very short description of the package
1+
# Laravel / PHP Movesms
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/savannabits/movesms.svg?style=flat-square)](https://packagist.org/packages/savannabits/movesms)
44
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/savannabits/movesms)
@@ -7,7 +7,7 @@
77
![Scrutinizer build ](https://img.shields.io/scrutinizer/build/g/savannabits/movesms/main?label=scrutnizer-build)
88
[![Total Downloads](https://img.shields.io/packagist/dt/savannabits/movesms.svg?style=flat-square)](https://packagist.org/packages/savannabits/movesms)
99

10-
The PHP SDK for Movetech Solutions' Bulk SMS API (Movesms). See their [Bulk SMS API](https://developers.movesms.co.ke/start.html) for more details.
10+
The Laravel / PHP SDK for Movetech Solutions' Bulk SMS API (Movesms). See their [Bulk SMS API](https://developers.movesms.co.ke/start.html) for more details.
1111

1212
## Installation
1313

@@ -82,7 +82,6 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
8282
If you discover any security related issues, please email maosa.sam@gmail.com instead of using the issue tracker.
8383

8484
## Credits
85-
8685
- [Sam Maosa](https://github.com/savannabits)
8786
- [All Contributors](../../contributors)
8887

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.2",
19+
"php": "^7.4|^8.0|^8.1",
2020
"ext-curl": "*",
2121
"ext-json": "*"
2222
},

0 commit comments

Comments
 (0)