File tree Expand file tree Collapse file tree 6 files changed +17
-15
lines changed Expand file tree Collapse file tree 6 files changed +17
-15
lines changed 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 >= 5.6
14
+ - Laravel >= 5.7
15
15
- PHP 7.2+
16
16
17
17
Original file line number Diff line number Diff line change 21
21
],
22
22
"require" : {
23
23
"php" : " >=7.2" ,
24
- "illuminate/support" : " 5.6.*|5.7.* " ,
24
+ "illuminate/support" : " ~5.7.0|~5.8.0 " ,
25
25
"guzzlehttp/guzzle" : " ~6.0"
26
26
},
27
27
"autoload" : {
30
30
}
31
31
},
32
32
"require-dev" : {
33
- "orchestra/testbench" : " ~3.7 " ,
33
+ "orchestra/testbench" : " ~3.8 " ,
34
34
"phpunit/phpunit" : " ~7.0"
35
35
},
36
36
"autoload-dev" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- syntaxCheck =" false" >
3
+ backupStaticAttributes =" false"
4
+ bootstrap =" vendor/autoload.php"
5
+ colors =" true"
6
+ convertErrorsToExceptions =" true"
7
+ convertNoticesToExceptions =" true"
8
+ convertWarningsToExceptions =" true"
9
+ processIsolation =" false"
10
+ stopOnError =" false"
11
+ stopOnFailure =" false"
12
+ verbose =" true"
13
+ >
12
14
13
15
<testsuites >
14
16
<testsuite name =" Linkstreet\LaravelSms Test Suite" >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class KapAdapterTest extends TestCase
18
18
/**
19
19
* {@inheritdoc}
20
20
*/
21
- protected function setUp ()
21
+ protected function setUp (): void
22
22
{
23
23
parent ::setUp ();
24
24
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class TwilioAdapterTest extends TestCase
18
18
/**
19
19
* {@inheritdoc}
20
20
*/
21
- protected function setUp ()
21
+ protected function setUp (): void
22
22
{
23
23
parent ::setUp ();
24
24
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class SmsManagerTest extends TestCase
14
14
/**
15
15
* {@inheritdoc}
16
16
*/
17
- public function setUp ()
17
+ public function setUp (): void
18
18
{
19
19
parent ::setUp ();
20
20
$ this ->config = config ('sms ' );
You can’t perform that action at this time.
0 commit comments