Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,21 @@ jobs:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
laravel: [ 9.*, 10.*, 11.* ]
laravel: [ 9.*, 10.*, 11.*, 12.* ]
exclude:
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.1
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This can be useful when wanting to store emails sent for archive purposes.

You can install the package via composer:

For Laravel 9.x, 10.x, 11.x (requires PHP version 8.2 or higher)
For Laravel 9.x, 10.x, 11.x, 12.x (Check the appropriate PHP version requirements on the [Laravel release notes page](https://laravel.com/docs/master/releases#support-policy))

```bash
composer require pod-point/laravel-mail-export
Expand Down Expand Up @@ -41,9 +41,9 @@ php artisan vendor:publish --provider="PodPoint\MailExport\MailExportServiceProv

You will be able to specify:

* `enabled`: whether this package is enabled or not. Once installed, it's enabled by default but the `MAIL_EXPORT` environment variable can be used to configure this.
* `disk`: which disk to use by default. `null` will use the default disk from your application filesystem.
* `path`: the default path, within the configured disk, where mail will be exported.
- `enabled`: whether this package is enabled or not. Once installed, it's enabled by default but the `MAIL_EXPORT` environment variable can be used to configure this.
- `disk`: which disk to use by default. `null` will use the default disk from your application filesystem.
- `path`: the default path, within the configured disk, where mail will be exported.

See our [`config/mail-export.php`](config/mail-export.php) for more details.

Expand Down Expand Up @@ -180,10 +180,10 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

## Credits

- [themsaid](https://github.com/themsaid) and Spatie's [laravel-mail-preview](https://github.com/spatie/laravel-mail-preview) for some inspiration
- [Laravel Package Development](https://laravelpackage.com) documentation by [John Braun](https://github.com/Jhnbrn90)
- [Pod Point](https://github.com/pod-point)
- [All Contributors](https://github.com/pod-point/laravel-mail-export/graphs/contributors)
- [themsaid](https://github.com/themsaid) and Spatie's [laravel-mail-preview](https://github.com/spatie/laravel-mail-preview) for some inspiration
- [Laravel Package Development](https://laravelpackage.com) documentation by [John Braun](https://github.com/Jhnbrn90)
- [Pod Point](https://github.com/pod-point)
- [All Contributors](https://github.com/pod-point/laravel-mail-export/graphs/contributors)

## License

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
],
"require": {
"php": "^8.1",
"illuminate/filesystem": "^9.0|^10.0|^11.0",
"illuminate/mail": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.0"
"illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0",
"illuminate/mail": "^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
"nesbot/carbon": "^2.0|^3.8.4"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0"
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
Expand Down