Skip to content

Commit

Permalink
Bumped minimum requirements to L11 and PHP 8.2 for new major release
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonferens committed Oct 21, 2024
1 parent ac6f448 commit 874b177
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 43 deletions.
52 changes: 17 additions & 35 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,11 @@ on: push
name: CI

jobs:
phpunit-php80:
name: PHP 8.0
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.0

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Run Testsuite
run: composer pest

phpunit-php81:
name: PHP 8.1
phpunit-php82:
name: PHP 8.2
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.1
image: kirschbaumdevelopment/laravel-test-runner:8.2

steps:
- uses: actions/checkout@v1
Expand All @@ -38,20 +20,20 @@ jobs:
- name: Run Testsuite
run: composer pest

phpunit-php82:
name: PHP 8.2
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.2
phpunit-php83:
name: PHP 8.3
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.3

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Run Testsuite
run: composer pest
- name: Run Testsuite
run: composer pest
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

All notable changes to `mail-intercept` will be documented in this file

## 0.6.0 - 2024-10-18
## 1.0.0 - 2024-10-21

- Added Attachment and embedded image assertions.
- Bumped minimum requirement to Laravel 11 and PHP 8.2.
- New attachment and embedded image assertions.
- Pest architecture tests.
- Replace PHP CS Fixer with Laravel Pint.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Mail isn't faked here. You get to inspect the actual mail ensuring you are sendi

| Laravel Version | Mail Intercept Version |
|:----------------|:-----------------------|
| 11.x | 0.5.x |
| 11.x | 0.6.x |
| 10.x | 0.4.x |
| 9.x | 0.3.x |
| 8.x and lower | 0.2.x |
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^8.0.2|^8.1|^8.2",
"illuminate/mail": "^9.2|^10.0|^11.0"
"php": "^8.2",
"illuminate/mail": "^11.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^7.1|^8.0|^9.0",
"pestphp/pest": "^2.36|^3.4",
"phpunit/phpunit": "^9.5.10|^10.5|^11.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.4",
"phpunit/phpunit": "^11.0",
"spatie/ray": "^1.41.1"
},
"autoload": {
Expand Down

0 comments on commit 874b177

Please sign in to comment.