Skip to content

Commit aeb0810

Browse files
PHP 8.2 and Package bumps
Adding in PHP 8.2 testing. Adding in the Laravel 10 packages.
1 parent c8b2acf commit aeb0810

File tree

2 files changed

+58
-54
lines changed

2 files changed

+58
-54
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [7.3, 7.4, 8.0, 8.1]
15+
php: [7.3, 7.4, 8.0, 8.1, 8.2]
1616
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0]
1717
scout: [^7.0, ^8.0, ^9.0]
1818
exclude:
@@ -32,6 +32,10 @@ jobs:
3232
scout: ^7.0
3333
- php: 8.1
3434
scout: ^8.0
35+
- php: 8.2
36+
scout: ^7.0
37+
- php: 8.2
38+
scout: ^8.0
3539
- laravel: ^6.0
3640
scout: ^9.0
3741
- laravel: ^7.0

composer.json

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
{
2-
"name": "pmatseykanets/laravel-scout-postgres",
3-
"description": "PostgreSQL Full Text Search Driver for Laravel Scout",
4-
"keywords": [
5-
"laravel",
6-
"laravel scout",
7-
"search",
8-
"postgresql",
9-
"full text search",
10-
"FTS"
11-
],
12-
"homepage": "https://github.com/pmatseykanets/laravel-scout-postgres",
13-
"license": "MIT",
14-
"support": {
15-
"issues": "https://github.com/pmatseykanets/laravel-scout-postgres/issues",
16-
"source": "https://github.com/pmatseykanets/laravel-scout-postgres"
17-
},
18-
"authors": [
19-
{
20-
"name": "Peter Matseykanets",
21-
"email": "pmatseykanets@gmail.com",
22-
"homepage": "https://github.com/pmatseykanets"
23-
}
24-
],
25-
"require": {
26-
"php": "^7.3|^8.0",
27-
"illuminate/contracts": "~6.0|~7.0|~8.0|~9.0",
28-
"illuminate/database": "~6.0|~7.0|~8.0|~9.0",
29-
"illuminate/support": "~6.0|~7.0|~8.0|~9.0",
30-
"laravel/scout": "~7.0|~8.0|~9.0"
31-
},
32-
"require-dev": {
33-
"phpunit/phpunit": "^8.3",
34-
"mockery/mockery": "^1.2.3"
35-
},
36-
"autoload": {
37-
"psr-4": {
38-
"ScoutEngines\\Postgres\\": "src"
39-
}
40-
},
41-
"autoload-dev": {
42-
"psr-4": {
43-
"ScoutEngines\\Postgres\\Test\\": "tests"
44-
}
45-
},
46-
"scripts": {
47-
"test": "vendor/bin/phpunit"
48-
},
49-
"extra": {
50-
"laravel": {
51-
"providers": [
52-
"ScoutEngines\\Postgres\\PostgresEngineServiceProvider"
53-
]
54-
}
2+
"name": "pmatseykanets/laravel-scout-postgres",
3+
"description": "PostgreSQL Full Text Search Driver for Laravel Scout",
4+
"keywords": [
5+
"laravel",
6+
"laravel scout",
7+
"search",
8+
"postgresql",
9+
"full text search",
10+
"FTS"
11+
],
12+
"homepage": "https://github.com/pmatseykanets/laravel-scout-postgres",
13+
"license": "MIT",
14+
"support": {
15+
"issues": "https://github.com/pmatseykanets/laravel-scout-postgres/issues",
16+
"source": "https://github.com/pmatseykanets/laravel-scout-postgres"
17+
},
18+
"authors": [
19+
{
20+
"name": "Peter Matseykanets",
21+
"email": "pmatseykanets@gmail.com",
22+
"homepage": "https://github.com/pmatseykanets"
5523
}
24+
],
25+
"require": {
26+
"php": "^7.3|^8.0|^8.1|^8.2",
27+
"illuminate/contracts": "~6.0|~7.0|~8.0|~9.0|~10.0",
28+
"illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0",
29+
"illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0",
30+
"laravel/scout": "~7.0|~8.0|~9.0"
31+
},
32+
"require-dev": {
33+
"phpunit/phpunit": "^8.5",
34+
"mockery/mockery": "^1.5"
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"ScoutEngines\\Postgres\\": "src"
39+
}
40+
},
41+
"autoload-dev": {
42+
"psr-4": {
43+
"ScoutEngines\\Postgres\\Test\\": "tests"
44+
}
45+
},
46+
"scripts": {
47+
"test": "vendor/bin/phpunit"
48+
},
49+
"extra": {
50+
"laravel": {
51+
"providers": [
52+
"ScoutEngines\\Postgres\\PostgresEngineServiceProvider"
53+
]
54+
}
55+
}
5656
}

0 commit comments

Comments
 (0)