Skip to content

Commit 001189a

Browse files
committed
Support Laravel 7 and Scout 8
1 parent 3dadccc commit 001189a

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [7.0.0](https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v7.0.0) - 2020-03-08
4+
5+
### Added
6+
7+
- Added support for Laravel 7
8+
9+
### Removed
10+
11+
- Removed support for Laravel 5
12+
313
## [6.0.0](https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v6.0.0) - 2019-09-19
414

515
### Added

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,16 @@ This package makes it easy to use native PostgreSQL Full Text Search capabilitie
3232

3333
You can install the package via composer:
3434

35+
**Scout 8**
36+
37+
``` bash
38+
composer require pmatseykanets/laravel-scout-postgres:7.0.0
39+
```
40+
3541
**Scout 7**
3642

3743
``` bash
38-
composer require pmatseykanets/laravel-scout-postgres
44+
composer require pmatseykanets/laravel-scout-postgres:5.0.0
3945
```
4046

4147
**Scout 6**

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
],
2525
"require": {
2626
"php": "^7.2",
27-
"illuminate/contracts": "~5.4|~6.0",
28-
"illuminate/database": "~5.4|~6.0",
29-
"illuminate/support": "~5.4|~6.0",
30-
"laravel/scout": "~7.0"
27+
"illuminate/contracts": "~6.0|~7.0",
28+
"illuminate/database": "~6.0|~7.0",
29+
"illuminate/support": "~6.0|~7.0",
30+
"laravel/scout": "~8.0"
3131
},
3232
"require-dev": {
3333
"phpunit/phpunit": "^8.3",

0 commit comments

Comments
 (0)