Skip to content

Commit 26654e9

Browse files
authored
Support for PHP 8.4 (#25)
1 parent b3c97cc commit 26654e9

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.3, 8.2, 8.1]
15-
laravel: ['10.*', '11.*']
14+
php: [8.4, 8.3, 8.2]
15+
laravel: ["10.*", "11.*"]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22-
exclude:
23-
- laravel: 11.*
24-
php: 8.1
2522

2623
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2724

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-verify-new-email.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-verify-new-email)
77

88

9-
Laravel supports verifying email addresses out of the box. This package adds support for verifying *new* email addresses. When a user updates its email address, it won't replace the old one until the new one is verified. Super easy to set up, still fully customizable. If you want it can be used as a drop-in replacement for the built-in Email Verification features as this package supports unauthenticated verification and auto-login. Support for Laravel 9.0 and higher and requires PHP 8.0 or higher.
9+
Laravel supports verifying email addresses out of the box. This package adds support for verifying *new* email addresses. When a user updates its email address, it won't replace the old one until the new one is verified. Super easy to set up, still fully customizable. If you want it can be used as a drop-in replacement for the built-in Email Verification features as this package supports unauthenticated verification and auto-login. Support for Laravel 9.0 and higher and requires PHP 8.2 or higher.
1010

1111
## Sponsor Us
1212

@@ -20,7 +20,7 @@ If you want to know more about the background of this package, please read [the
2020

2121
## Requirements
2222

23-
* PHP 8.1 or higher
23+
* PHP 8.2 or higher
2424
* Laravel 10 or higher
2525

2626
## Installation

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1|^8.2|^8.3",
19+
"php": "^8.2|^8.3|^8.4",
2020
"illuminate/support": "^10.0|^11.0"
2121
},
2222
"require-dev": {
@@ -49,4 +49,4 @@
4949
]
5050
}
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)