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

Commit

Permalink
Add support for Laravel 5.8 (#10)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
claudiodekker committed Feb 27, 2019
1 parent 9c4d271 commit 1e2aed0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3,826 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
/vendor/
phpunit.xml
composer.lock
.env
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ sudo: required
language: php

php:
- 7.1
- 7.2
- 7.3

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@

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

## 1.0.0 - 2018-10-08
## 1.1.0 - 2019-02-27
- Drop support for PHP 7.1
- Add support for Laravel 5.8

## 1.0.0 - 2018-10-08
- Initial release
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -21,14 +21,14 @@
}
],
"require": {
"php": "^7.1",
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
"php": "^7.2",
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "^3.7"
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "~3.8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1e2aed0

Please sign in to comment.