Skip to content
This repository was archived by the owner on May 3, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}