Skip to content

Commit 44fc524

Browse files
authored
Merge pull request #321 from igorbabko/master
Add Laravel v6 support
2 parents cfd3f5a + 28d72d3 commit 44fc524

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.php_cs.cache
2+
.phpunit.result.cache
23
build
34
composer.lock
45
files

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to `laravel-messenger` will be documented in this file.
4+
5+
## [Unreleased]
6+
7+
### Added
8+
9+
- ([#321](https://github.com/cmgmyr/laravel-messenger/pull/321)) Laravel 6 support

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
],
1414
"require": {
1515
"php": "^7.1.3",
16-
"illuminate/config": ">=5.5 <6.0",
17-
"illuminate/support": ">=5.5 <6.0",
18-
"illuminate/database": ">=5.5 <6.0"
16+
"illuminate/config": "^5.5|^6.0",
17+
"illuminate/support": "^5.5|^6.0",
18+
"illuminate/database": "^5.5|^6.0"
1919
},
2020
"require-dev": {
2121
"adamwathan/faktory": "0.3.*",
2222
"friendsofphp/php-cs-fixer": "^2.5",
23-
"orchestra/testbench": "~3.0",
23+
"orchestra/testbench": "^3.0|^4.0",
2424
"phpunit/phpunit": "^7.0"
2525
},
2626
"autoload": {

0 commit comments

Comments
 (0)