File tree 5 files changed +29
-27
lines changed
5 files changed +29
-27
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : true
10
10
matrix :
11
- php : [ 8.0 , 8.1 ]
12
- laravel : [ 9.* ]
11
+ php : [ 8.1 , 8.2 ]
12
+ laravel : [ 9.*, 10.* ]
13
13
include :
14
14
- laravel : 9.*
15
15
testbench : 7.*
16
+ - laravel : 10.*
17
+ testbench : 8.*
16
18
17
19
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
18
20
19
21
steps :
20
22
- name : Checkout code
21
- uses : actions/checkout@v2
23
+ uses : actions/checkout@v3
22
24
23
25
- name : Cache dependencies
24
- uses : actions/cache@v2
26
+ uses : actions/cache@v3
25
27
with :
26
28
path : ~/.composer/cache/files
27
29
key : dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-mail-export ` will be documented in this file.
4
4
5
+ ## 2.1.0 - 2023-09-01
6
+
7
+ - Laravel 10 Support [ #20 ] ( https://github.com/Pod-Point/laravel-mail-export/pull/20 )
8
+ - New contributor [ clnt] ( https://github.com/clnt )
9
+
5
10
## 2.0.0 - 2022-08-04
6
11
7
12
- Laravel 9 Support ** Breaking change** [ #17 ] ( https://github.com/Pod-Point/laravel-mail-export/pull/17 )
Original file line number Diff line number Diff line change 1
1
# Laravel Mail Export
2
2
3
3
[ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/pod-point/laravel-mail-export.svg?style=flat-square )] ( https://packagist.org/packages/pod-point/laravel-mail-export )
4
- ![ GitHub Workflow Status ] ( https://img.shields.io/github/workflow/status/pod-point /laravel-mail-export/run-tests?label=tests )
4
+ [ ![ tests ] ( https://github.com/Pod-Point/laravel-mail-export/actions/workflows/run-tests.yml/badge.svg?branch=2.x )] ( https://github.com/Pod-Point /laravel-mail-export/actions/workflows/ run-tests.yml )
5
5
[ ![ Software License] ( https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square )] ( LICENSE.md )
6
6
[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/pod-point/laravel-mail-export.svg?style=flat-square )] ( https://packagist.org/packages/pod-point/laravel-mail-export )
7
7
@@ -13,7 +13,7 @@ This can be useful when wanting to store emails sent for archive purposes.
13
13
14
14
You can install the package via composer:
15
15
16
- For Laravel 9.x
16
+ For Laravel 9.x and 10.x
17
17
18
18
``` bash
19
19
composer require pod-point/laravel-mail-export
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " ^8.0 " ,
15
- "illuminate/filesystem" : " ^9.0" ,
16
- "illuminate/mail" : " ^9.0" ,
17
- "illuminate/support" : " ^9.0" ,
14
+ "php" : " ^8.1 " ,
15
+ "illuminate/filesystem" : " ^9.0|^10.0 " ,
16
+ "illuminate/mail" : " ^9.0|^10.0 " ,
17
+ "illuminate/support" : " ^9.0|^10.0 " ,
18
18
"nesbot/carbon" : " ^2.0"
19
19
},
20
20
"require-dev" : {
21
- "orchestra/testbench" : " ^7.0"
21
+ "orchestra/testbench" : " ^7.0|^8.0 "
22
22
},
23
23
"autoload" : {
24
24
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- beStrictAboutTestsThatDoNotTestAnything =" false"
5
- bootstrap =" vendor/autoload.php"
6
- colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false"
12
- >
13
- <testsuites >
14
- <testsuite name =" Package Test Suite" >
15
- <directory suffix =" .php" >./tests/</directory >
16
- </testsuite >
17
- </testsuites >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php" backupGlobals =" false" colors =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <testsuites >
4
+ <testsuite name =" Package Test Suite" >
5
+ <directory >tests</directory >
6
+ </testsuite >
7
+ </testsuites >
8
+ <source >
9
+ <include >
10
+ <directory suffix =" .php" >src/</directory >
11
+ </include >
12
+ </source >
18
13
</phpunit >
You can’t perform that action at this time.
0 commit comments