Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 1e2aed0

Browse files
Add support for Laravel 5.8 (#10)
* Add support for Laravel 5.8 This unfortunately also forces us to drop PHP 7.1, due to PHPUnit's deprecation of it: sebastianbergmann/phpunit#2762
1 parent 9c4d271 commit 1e2aed0

File tree

6 files changed

+12
-3826
lines changed

6 files changed

+12
-3826
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/vendor/
22
phpunit.xml
3+
composer.lock
4+
.env

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: required
33
language: php
44

55
php:
6-
- 7.1
76
- 7.2
87
- 7.3
98

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `ubient/laravel-pwned-passwords` will be documented in this file
44

5-
## 1.0.0 - 2018-10-08
5+
## 1.1.0 - 2019-02-27
6+
- Drop support for PHP 7.1
7+
- Add support for Laravel 5.8
68

9+
## 1.0.0 - 2018-10-08
710
- Initial release

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.1",
25-
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0",
26-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
24+
"php": "^7.2",
25+
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
26+
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
2727
"guzzlehttp/guzzle": "^6.3"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^7.0",
31-
"orchestra/testbench": "^3.7"
30+
"phpunit/phpunit": "^8.0",
31+
"orchestra/testbench": "~3.8.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)