Skip to content

Commit fc5c087

Browse files
Support Laravel 10.x & upgrade to PHP 8.2
1 parent de59302 commit fc5c087

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ composer.lock
33
vendor
44
.idea/
55
.phpunit.result.cache
6+
.phpunit.cache

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@
1010

1111
To install this package you will need:
1212

13-
- Laravel 9.x
14-
- PHP 8.1+
13+
- Laravel 10.x
14+
- PHP 8.2+
1515

1616
Run this command to install via composer
1717

18-
```
18+
```php
1919
composer require linkstreet/laravel-sms
2020
```
2121

22-
or edit the `composer.json`
22+
or edit the `composer.json`
2323

24-
```
24+
```php
2525
"require": {
26-
"linkstreet/laravel-sms": "^6.0"
26+
"linkstreet/laravel-sms": "^6.1"
2727
}
2828
```
2929

3030
Then run composer update in your terminal to pull the package.
3131

3232

3333
### Supported SMS gateway providers
34-
- [KAP System](https://kapsystem.com)
35-
- [Twilio](https://www.twilio.com/)
34+
- [KAP System](https://kapsystem.com)
35+
- [Twilio](https://www.twilio.com/)
3636

3737

3838
### License

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
20-
"illuminate/support": "^9.0",
19+
"php": "^8.2",
20+
"illuminate/support": "^10.0",
2121
"guzzlehttp/guzzle": "^7.0"
2222
},
2323
"autoload": {
@@ -26,8 +26,8 @@
2626
}
2727
},
2828
"require-dev": {
29-
"orchestra/testbench": "^7.0",
30-
"phpunit/phpunit": "^9.0"
29+
"orchestra/testbench": "^8.0",
30+
"phpunit/phpunit": "^10.0"
3131
},
3232
"autoload-dev": {
3333
"psr-4": {

phpunit.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
backupGlobals="false"
4-
backupStaticAttributes="false"
54
bootstrap="vendor/autoload.php"
65
colors="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
106
processIsolation="false"
117
stopOnError="false"
128
stopOnFailure="false"
13-
verbose="true"
14-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
9+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
10+
cacheDirectory=".phpunit.cache"
11+
backupStaticProperties="false">
1512
<coverage includeUncoveredFiles="false">
1613
<include>
1714
<directory suffix=".php">src/</directory>

0 commit comments

Comments
 (0)