File tree Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 1
1
build
2
2
composer.lock
3
3
vendor
4
- .idea /
4
+ .idea /
5
+ .phpunit.result.cache
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ sudo: false
5
5
php :
6
6
- 7.2
7
7
- 7.3
8
+ - 7.4
8
9
9
10
cache :
10
11
directories :
Original file line number Diff line number Diff line change 11
11
12
12
To install this package you will need:
13
13
14
- - Laravel >= 7.0
14
+ - Laravel 7.x
15
15
- PHP 7.2+
16
16
17
17
@@ -25,7 +25,7 @@ or edit the `composer.json`
25
25
26
26
```
27
27
"require": {
28
- "linkstreet/laravel-sms": "^6.0 "
28
+ "linkstreet/laravel-sms": "^5.1 "
29
29
}
30
30
```
31
31
Original file line number Diff line number Diff line change 2
2
3
3
namespace Linkstreet \LaravelSms \Providers ;
4
4
5
+ use Illuminate \Contracts \Support \DeferrableProvider ;
5
6
use Illuminate \Support \ServiceProvider ;
6
7
use Linkstreet \LaravelSms \SmsManager ;
7
8
8
- class SmsServiceProvider extends ServiceProvider
9
+ class SmsServiceProvider extends ServiceProvider implements DeferrableProvider
9
10
{
10
- /**
11
- * Indicates if loading of the provider is deferred.
12
- *
13
- * @var bool
14
- */
15
- protected $ defer = true ;
16
-
17
11
/**
18
12
* Bootstrap the application services.
19
13
*
You can’t perform that action at this time.
0 commit comments