Skip to content

Commit 4366567

Browse files
authored
Merge pull request #2 from pascalbaljetmedia/laravel-7.0
Laravel 7.0
2 parents fe8085f + 9eb78c5 commit 4366567

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

.travis.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,22 @@ matrix:
1414
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-lowest'
1515
- php: 7.3
1616
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-stable'
17-
- php: 7.4snapshot
17+
- php: 7.4
1818
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-lowest'
19-
- php: 7.4snapshot
19+
- php: 7.4
2020
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-stable'
21+
- php: 7.2
22+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
23+
- php: 7.2
24+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
25+
- php: 7.3
26+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
27+
- php: 7.3
28+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
29+
- php: 7.4
30+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
31+
- php: 7.4
32+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
2133
fast_finish: true
2234

2335
before_install:

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
All notable changes to `laravel-user-email` will be documented in this file
3+
All notable changes to `laravel-verify-new-email` will be documented in this file
4+
5+
## 1.1.0 - 2020-03-03
6+
7+
- support for Laravel 7.0
48

59
## 1.0.7 - 2020-01-08
610

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Quality Score](https://img.shields.io/scrutinizer/g/pascalbaljetmedia/laravel-verify-new-email.svg?style=flat-square)](https://scrutinizer-ci.com/g/pascalbaljetmedia/laravel-verify-new-email)
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

8-
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. Requires Laravel 6.0 and PHP 7.2 or higher.
8+
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 7.0 and requires PHP 7.2 or higher.
99

1010
## Blogpost
1111

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
],
1818
"require": {
1919
"php": "^7.2",
20-
"illuminate/support": "^6.0"
20+
"illuminate/support": "^6.0 || ^7.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "4.0.*",
23+
"orchestra/testbench": "^4.0 || ^5.0",
2424
"phpunit/phpunit": "^8.0"
2525
},
2626
"autoload": {

0 commit comments

Comments
 (0)