File tree Expand file tree Collapse file tree 4 files changed +13
-17
lines changed Expand file tree Collapse file tree 4 files changed +13
-17
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ jobs:
15
15
matrix :
16
16
php : [7.2, 7.3, 7.4]
17
17
laravel : [^6.0, ^7.0, ^8.0]
18
+ scout : [^7.0, ^8.0]
18
19
exclude :
19
20
- php : 7.2
20
21
laravel : ^8.0
22
+ - laravel : ^8.0
23
+ scout : ^7.0
21
24
22
- name : Test with PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
25
+ name : Test PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Scout ${{ matrix.scout }}
23
26
24
27
steps :
25
28
- name : Checkout code
38
41
composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update
39
42
composer require "illuminate/database=${{ matrix.laravel }}" --no-update
40
43
composer require "illuminate/support=${{ matrix.laravel }}" --no-update
44
+ composer require "laravel/scout=${{ matrix.scout }}" --no-update
41
45
composer update --prefer-dist --no-interaction --no-progress
42
46
43
47
- name : Run tests
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 7.2.0] ( https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v7.2.0 ) - 2020-09-24
4
+
5
+ ### Changed
6
+
7
+ - Reinstated support for Scout 7
8
+
3
9
## [ 7.1.0] ( https://github.com/pmatseykanets/laravel-scout-postgres/releases/tag/v7.1.0 ) - 2020-09-14
4
10
5
11
### Added
Original file line number Diff line number Diff line change @@ -32,22 +32,8 @@ This package makes it easy to use native PostgreSQL Full Text Search capabilitie
32
32
33
33
You can install the package via composer:
34
34
35
- ** Scout 8**
36
-
37
- ``` bash
38
- composer require pmatseykanets/laravel-scout-postgres:7
39
- ```
40
-
41
- For Laravel 8 support use ` 7.1 ` an up.
42
-
43
- ``` bash
44
- composer require pmatseykanets/laravel-scout-postgres:7.1
45
- ```
46
-
47
- ** Scout 7**
48
-
49
35
``` bash
50
- composer require pmatseykanets/laravel-scout-postgres:5
36
+ composer require pmatseykanets/laravel-scout-postgres
51
37
```
52
38
53
39
### Laravel
Original file line number Diff line number Diff line change 27
27
"illuminate/contracts" : " ~6.0|~7.0|~8.0" ,
28
28
"illuminate/database" : " ~6.0|~7.0|~8.0" ,
29
29
"illuminate/support" : " ~6.0|~7.0|~8.0" ,
30
- "laravel/scout" : " ~8.0"
30
+ "laravel/scout" : " ~7.0|~ 8.0"
31
31
},
32
32
"require-dev" : {
33
33
"phpunit/phpunit" : " ^8.3" ,
You can’t perform that action at this time.
0 commit comments