File tree 6 files changed +13
-15
lines changed
6 files changed +13
-15
lines changed Original file line number Diff line number Diff line change
1
+ C:37:"PHPUnit\Runner\DefaultTestResultCache":1464:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:22:{s:53:"Tests\BotManTesterTest::it_can_fake_incoming_messages";d:0.011;s:52:"Tests\BotManTesterTest::it_can_fake_user_information";d:0;s:45:"Tests\BotManTesterTest::it_can_assert_replies";d:0;s:53:"Tests\BotManTesterTest::it_can_assert_replies_are_not";d:0;s:61:"Tests\BotManTesterTest::it_can_assert_replies_are_in_an_array";d:0;s:65:"Tests\BotManTesterTest::it_can_assert_replies_are_not_in_an_array";d:0;s:53:"Tests\BotManTesterTest::it_can_assert_generic_replies";d:0;s:61:"Tests\BotManTesterTest::it_can_assert_replies_are_not_present";d:0;s:49:"Tests\BotManTesterTest::it_can_assert_raw_replies";d:0;s:54:"Tests\BotManTesterTest::it_can_assert_multiple_replies";d:0;s:54:"Tests\BotManTesterTest::it_can_assert_a_template_class";d:0;s:55:"Tests\BotManTesterTest::it_can_assert_a_template_object";d:0.001;s:63:"Tests\BotManTesterTest::it_can_assert_a_template_is_in_an_array";d:0;s:67:"Tests\BotManTesterTest::it_can_assert_a_template_is_not_in_an_array";d:0;s:56:"Tests\BotManTesterTest::it_can_fake_interactive_messages";d:0.008;s:45:"Tests\BotManTesterTest::it_can_fake_locations";d:0;s:42:"Tests\BotManTesterTest::it_can_fake_images";d:0;s:42:"Tests\BotManTesterTest::it_can_fake_videos";d:0;s:41:"Tests\BotManTesterTest::it_can_fake_audio";d:0;s:41:"Tests\BotManTesterTest::it_can_fake_files";d:0;s:42:"Tests\BotManTesterTest::it_can_fake_events";d:0;s:45:"Tests\BotManTesterTest::it_can_test_questions";d:0.009;}}}
Original file line number Diff line number Diff line change @@ -2,5 +2,3 @@ preset: laravel
2
2
3
3
enabled :
4
4
- unalign_double_arrow
5
-
6
- linting : true
Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 7.0
5
- - 7.1
4
+ - 7.2
5
+ - 7.3
6
6
7
7
before_script :
8
8
- travis_retry composer self-update --preview
@@ -16,4 +16,4 @@ before_install:
16
16
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
17
17
18
18
after_success :
19
- - codecov
19
+ - codecov
Original file line number Diff line number Diff line change 15
15
}
16
16
],
17
17
"require" : {
18
- "php" : " >=7.0 " ,
18
+ "php" : " ^7.2 " ,
19
19
"botman/botman" : " ~2.0|~3.0" ,
20
20
"guzzlehttp/guzzle" : " ~6.0" ,
21
- "illuminate/support" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0" ,
22
- "illuminate/contracts" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0" ,
23
- "illuminate/console" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0" ,
21
+ "illuminate/support" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0 " ,
22
+ "illuminate/contracts" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0 " ,
23
+ "illuminate/console" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0 " ,
24
24
"thecodingmachine/discovery" : " ^1.2"
25
25
},
26
26
"require-dev" : {
27
- "phpunit/phpunit " : " ~6 .0" ,
28
- "orchestra/testbench " : " ~3.5 .0" ,
27
+ "orchestra/testbench " : " ^3.6|^3.7|^3.8|^4 .0" ,
28
+ "phpunit/phpunit " : " ^7.0|^8 .0" ,
29
29
"mockery/mockery" : " dev-master"
30
30
},
31
31
"autoload" : {
Original file line number Diff line number Diff line change 8
8
convertWarningsToExceptions =" true"
9
9
processIsolation =" false"
10
10
stopOnFailure =" false"
11
- syntaxCheck =" false"
12
11
>
13
12
<testsuites >
14
13
<testsuite name =" Package Test Suite" >
20
19
<directory suffix =" .php" >src/</directory >
21
20
</whitelist >
22
21
</filter >
23
- </phpunit >
22
+ </phpunit >
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ class BotManTesterTest extends TestCase
37
37
/** @var BotMan */
38
38
protected $ botman ;
39
39
40
- public function tearDown ()
40
+ public function tearDown () : void
41
41
{
42
42
m::close ();
43
43
}
44
44
45
- protected function setUp ()
45
+ protected function setUp () : void
46
46
{
47
47
parent ::setUp ();
48
48
You can’t perform that action at this time.
0 commit comments