File tree Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ composer.lock
3
3
vendor
4
4
.idea /
5
5
.phpunit.result.cache
6
+ .phpunit.cache
Original file line number Diff line number Diff line change 10
10
11
11
To install this package you will need:
12
12
13
- - Laravel 9 .x
14
- - PHP 8.1 +
13
+ - Laravel 10 .x
14
+ - PHP 8.2 +
15
15
16
16
Run this command to install via composer
17
17
18
- ```
18
+ ``` php
19
19
composer require linkstreet/laravel-sms
20
20
```
21
21
22
- or edit the ` composer.json `
22
+ or edit the ` composer.json `
23
23
24
- ```
24
+ ``` php
25
25
"require": {
26
- "linkstreet/laravel-sms": "^6.0 "
26
+ "linkstreet/laravel-sms": "^6.1 "
27
27
}
28
28
```
29
29
30
30
Then run composer update in your terminal to pull the package.
31
31
32
32
33
33
### 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/ )
36
36
37
37
38
38
### License
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^8.1 " ,
20
- "illuminate/support" : " ^9 .0" ,
19
+ "php" : " ^8.2 " ,
20
+ "illuminate/support" : " ^10 .0" ,
21
21
"guzzlehttp/guzzle" : " ^7.0"
22
22
},
23
23
"autoload" : {
26
26
}
27
27
},
28
28
"require-dev" : {
29
- "orchestra/testbench" : " ^7 .0" ,
30
- "phpunit/phpunit" : " ^9 .0"
29
+ "orchestra/testbench" : " ^8 .0" ,
30
+ "phpunit/phpunit" : " ^10 .0"
31
31
},
32
32
"autoload-dev" : {
33
33
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
3
backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
4
bootstrap =" vendor/autoload.php"
6
5
colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
6
processIsolation =" false"
11
7
stopOnError =" false"
12
8
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" >
15
12
<coverage includeUncoveredFiles =" false" >
16
13
<include >
17
14
<directory suffix =" .php" >src/</directory >
You can’t perform that action at this time.
0 commit comments