File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.6
5
4
- 7.0
6
5
- 7.1
7
6
- 7.2
@@ -17,7 +16,7 @@ before_script:
17
16
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
18
17
19
18
script :
20
- - phpunit --coverage-text --coverage-clover=coverage.clover
19
+ - ./vendor/bin/ phpunit --coverage-text --coverage-clover=coverage.clover
21
20
22
21
after_script :
23
22
- wget https://scrutinizer-ci.com/ocular.phar
Original file line number Diff line number Diff line change 12
12
}
13
13
],
14
14
"require" : {
15
- "php" : " >=5.6.4 " ,
15
+ "php" : " >=7.0 " ,
16
16
"guzzlehttp/guzzle" : " ^6.2" ,
17
- "illuminate/notifications" : " ~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0" ,
18
- "illuminate/support" : " ~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0"
17
+ "illuminate/notifications" : " ~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0 " ,
18
+ "illuminate/support" : " ~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0 "
19
19
},
20
20
"require-dev" : {
21
- "mockery/mockery" : " ^0.9.5 " ,
22
- "phpunit/phpunit" : " 5 .*"
21
+ "mockery/mockery" : " ^1.2.0 " ,
22
+ "phpunit/phpunit" : " 6 .*"
23
23
},
24
24
"autoload" : {
25
25
"psr-4" : {
Original file line number Diff line number Diff line change 2
2
3
3
namespace NotificationChannels \Pushbullet \Test ;
4
4
5
+ use PHPUnit \Framework \TestCase ;
5
6
use NotificationChannels \Pushbullet \PushbulletMessage ;
6
7
7
- class PushbulletMessageTest extends \PHPUnit_Framework_TestCase
8
+ class PushbulletMessageTest extends TestCase
8
9
{
9
10
/** @test */
10
11
public function message_can_be_instantiated_with_text ()
You can’t perform that action at this time.
0 commit comments