File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ language: php
3
3
php :
4
4
- 7.3
5
5
- 7.4
6
+ - 8.0
6
7
7
8
env :
8
9
matrix :
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^7.3" ,
19
+ "php" : " ^7.3|^8.0 " ,
20
20
"illuminate/container" : " ^6.0|^7.0|^8.0" ,
21
21
"illuminate/database" : " ^6.0|^7.0|^8.0" ,
22
22
"illuminate/log" : " ^6.0|^7.0|^8.0" ,
26
26
"zbateson/mail-mime-parser" : " ^1.1"
27
27
},
28
28
"require-dev" : {
29
+ "laminas/laminas-mail" : " ^2.13" ,
29
30
"mockery/mockery" : " ^1.2" ,
30
31
"orchestra/testbench" : " ^4.0|^5.0" ,
31
- "phpunit/phpunit" : " ^7.0|^8.0" ,
32
- "zendframework/zend-mail" : " ^2.10"
32
+ "phpunit/phpunit" : " ^7.0|^8.0|^9.3"
33
33
},
34
34
"autoload" : {
35
35
"psr-4" : {
44
44
"scripts" : {
45
45
"test" : " vendor/bin/phpunit" ,
46
46
"test-coverage" : " vendor/bin/phpunit --coverage-html coverage"
47
-
48
47
},
49
48
"config" : {
50
49
"sort-packages" : true
Original file line number Diff line number Diff line change 5
5
use BeyondCode \Mailbox \InboundEmail ;
6
6
use BeyondCode \Mailbox \Routing \Route ;
7
7
use BeyondCode \Mailbox \Routing \RouteCollection ;
8
- use Zend \Mail \Message as TestMail ;
8
+ use Laminas \Mail \Message as TestMail ;
9
9
10
10
class MailboxRouteCollectionTest extends TestCase
11
11
{
Original file line number Diff line number Diff line change 4
4
5
5
use BeyondCode \Mailbox \InboundEmail ;
6
6
use BeyondCode \Mailbox \Routing \Route ;
7
- use Zend \Mail \Message as TestMail ;
7
+ use Laminas \Mail \Message as TestMail ;
8
8
9
9
class MailboxRouteTest extends TestCase
10
10
{
You can’t perform that action at this time.
0 commit comments