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

Commit c993c30

Browse files
Add Laravel 6.0 support (drops L5.7 and older) (#14)
Older Laravel versions can use prior versions of this package
1 parent edbf90c commit c993c30

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

.scrutinizer.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,12 @@ tools:
3131
php_cpd:
3232
enabled: true
3333
excluded_dirs: [vendor, tests]
34+
build:
35+
nodes:
36+
analysis:
37+
environment:
38+
php:
39+
version: 7.2
40+
tests:
41+
override:
42+
- php-scrutinizer-run

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## 3.0.0 - 2019-09-03
6+
- Drop support for Laravel 5.7 and older
7+
- Add support Laravel 6.0
8+
59
## 2.1.0 - 2019-02-27
610
- Drop support for PHP 7.1
711
- Add support for Laravel 5.8

composer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
],
2323
"require": {
2424
"php": "^7.2",
25-
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
26-
"illuminate/http": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
27-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
25+
"illuminate/http": "^5.8|^6.0",
26+
"illuminate/support": "^5.8|^6.0",
27+
"laravel/framework": "^5.8|^6.0"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^8.0",
31-
"orchestra/testbench": "~3.8.0"
30+
"orchestra/testbench": "^3.8",
31+
"phpunit/phpunit": "^8.0"
3232
},
3333
"autoload": {
3434
"psr-4": {
@@ -47,6 +47,12 @@
4747
]
4848
}
4949
},
50+
"scripts": {
51+
"test": "phpunit"
52+
},
53+
"config": {
54+
"sort-packages": true
55+
},
5056
"minimum-stability": "dev",
5157
"prefer-stable": true
5258
}

0 commit comments

Comments
 (0)