File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
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
6
+ - 7.2
7
7
8
8
env :
9
9
matrix :
Original file line number Diff line number Diff line change 2
2
3
3
All Notable changes to ` laravel-notification-channels/webpush ` will be documented in this file
4
4
5
+ ## 2.0.0 - 2017-10-23
6
+
7
+ - Removed compatibility with PHP<7 and upgrade deps.
8
+
5
9
## 1.0.0 - 2017-03-25
6
10
7
11
- Added support for VAPID.
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
"illuminate/notifications" : " ^5.3" ,
17
17
"illuminate/support" : " ^5.1" ,
18
- "minishlink/web-push" : " ^2.0.0 "
18
+ "minishlink/web-push" : " ^2.0"
19
19
},
20
20
"require-dev" : {
21
- "mockery/mockery" : " ^0.9.5 " ,
22
- "phpunit/phpunit" : " ^5.7 " ,
23
- "orchestra/testbench" : " ^3.4.6 "
21
+ "mockery/mockery" : " ~1.0 " ,
22
+ "phpunit/phpunit" : " ~6.0 " ,
23
+ "orchestra/testbench" : " ^3.5 "
24
24
},
25
25
"autoload" : {
26
26
"psr-4" : {
Original file line number Diff line number Diff line change 2
2
3
3
namespace NotificationChannels \WebPush \Test ;
4
4
5
+ use PHPUnit \Framework \TestCase ;
5
6
use NotificationChannels \WebPush \WebPushMessage ;
6
7
7
- class MessageTest extends \PHPUnit_Framework_TestCase
8
+ class MessageTest extends TestCase
8
9
{
9
10
/** @var \NotificationChannels\WebPush\WebPushMessage */
10
11
protected $ message ;
You can’t perform that action at this time.
0 commit comments