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

Commit

Permalink
Add support for Laravel 5.8 (#13)
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 3d7d7f7 commit edbf90c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 3,598 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

All notable changes to `ubient/laravel-flash-message` will be documented in this file

## 2.1.0 - 2019-02-27
- Drop support for PHP 7.1
- Add support for Laravel 5.8

## 2.0.2 - 2019-02-01
- Fixed an incorrect namespacing issue for multiple files in the `tests/Unit/` folder
- Removed (opinionated) linter overrides from tests
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Expand Up @@ -21,15 +21,14 @@
}
],
"require": {
"php": "^7.1",
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/http": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0"
"php": "^7.2",
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/http": "~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"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "^3.7",
"sebastian/diff": "^3.0"
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "~3.8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit edbf90c

Please sign in to comment.