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

Commit

Permalink
Add Laravel 6.0 support (drops L5.7 and older) (#14)
Browse files Browse the repository at this point in the history
Older Laravel versions can use prior versions of this package
  • Loading branch information
claudiodekker authored Sep 3, 2019
1 parent edbf90c commit c993c30
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,12 @@ tools:
php_cpd:
enabled: true
excluded_dirs: [vendor, tests]
build:
nodes:
analysis:
environment:
php:
version: 7.2
tests:
override:
- php-scrutinizer-run
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 3.0.0 - 2019-09-03
- Drop support for Laravel 5.7 and older
- Add support Laravel 6.0

## 2.1.0 - 2019-02-27
- Drop support for PHP 7.1
- Add support for Laravel 5.8
Expand Down
16 changes: 11 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
],
"require": {
"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"
"illuminate/http": "^5.8|^6.0",
"illuminate/support": "^5.8|^6.0",
"laravel/framework": "^5.8|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "~3.8.0"
"orchestra/testbench": "^3.8",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -47,6 +47,12 @@
]
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit c993c30

Please sign in to comment.