Skip to content

Commit 396f095

Browse files
authored
Support for PHP 8.2 (#19)
1 parent fbaa811 commit 396f095

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.0, 7.4]
12-
laravel: [9.*, 8.*]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [9.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
1515
- laravel: 9.*
1616
testbench: 7.*
17-
- laravel: 8.*
18-
testbench: 6.*
1917
exclude:
2018
- laravel: 9.*
2119
php: 7.4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
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 6.0 and higher and requires PHP 7.3 or higher.
1010

11-
## Support this package!
11+
## Sponsor this package!
1212

1313
❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help!
1414

@@ -24,8 +24,8 @@ If you want to know more about the background of this package, please read [the
2424

2525
## Requirements
2626

27-
* PHP 7.4 or higher
28-
* Laravel 8 or higher
27+
* PHP 8.0 or higher
28+
* Laravel 9 or higher
2929

3030
## Installation
3131

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4 || ^8.0 || ^8.1",
20-
"illuminate/support": "^8.67 || ^9.0"
19+
"php": "^8.0 || ^8.1 || ^8.2",
20+
"illuminate/support": "^9.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^6.23 || ^7.0",
23+
"nesbot/carbon": "^2.63",
24+
"orchestra/testbench": "^7.0",
2425
"phpunit/phpunit": "^9.4"
2526
},
2627
"autoload": {
@@ -49,4 +50,4 @@
4950
]
5051
}
5152
}
52-
}
53+
}

0 commit comments

Comments
 (0)