We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 71deb33 + 3470141 commit c677cdeCopy full SHA for c677cde
.github/workflows/tests.yml
@@ -13,11 +13,13 @@ jobs:
13
strategy:
14
fail-fast: true
15
matrix:
16
- php: [8.0, 8.1, 8.2]
17
- laravel: [^9, ^10]
18
- scout: [^9, ^10]
+ php: [8.1, 8.2, 8.3, 8.4]
+ laravel: [^10, ^11]
+ scout: [^10]
19
exclude:
20
- - php: 8.0
+ - php: 8.1
21
+ laravel: ^11
22
+ - php: 8.4
23
laravel: ^10
24
25
name: Test PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Scout ${{ matrix.scout }}
.gitignore
@@ -1,3 +1,4 @@
1
/vendor
2
.phpunit.result.cache
3
-composer.lock
+composer.lock
4
+.DS_Store
composer.json
@@ -28,19 +28,19 @@
28
}
29
],
30
"require": {
31
- "php": "^8.0|^8.1|^8.2",
32
- "illuminate/contracts": "^9|^10",
33
- "illuminate/database": "^9|^10",
34
- "illuminate/support": "^9|^10",
35
- "laravel/scout": "^9|^10"
+ "php": "^8.1|^8.2|^8.3|^8.4",
+ "illuminate/contracts": "^10|^11",
+ "illuminate/database": "^10|^11",
+ "illuminate/support": "^10|^11",
+ "laravel/scout": "^10|^11"
36
},
37
"require-dev": {
38
- "laravel/pint": "^1.10",
39
- "mockery/mockery": "^1.5",
40
- "nunomaduro/larastan": "^2.6",
41
- "orchestra/testbench": "^8.5",
+ "laravel/pint": "^1.18",
+ "mockery/mockery": "^1.6",
+ "nunomaduro/larastan": "^2.9",
+ "orchestra/testbench": "^8.28",
42
"phpunit/phpunit": "^9.6",
43
- "tightenco/duster": "^2.0"
+ "tightenco/duster": "^2.7"
44
45
"autoload": {
46
"psr-4": {
@@ -62,4 +62,4 @@
62
]
63
64
65
-}
+}
phpstan-baseline.neon
@@ -1,17 +1,21 @@
parameters:
ignoreErrors:
-
- message: "#^Call to an undefined method Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:getDeletedAtColumn\\(\\)\\.$#"
5
- count: 1
+ message: "#^Call to an undefined method Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:searchableAs\\(\\)\\.$#"
+ count: 2
6
path: src/PostgresEngine.php
7
8
9
- message: "#^Call to an undefined method Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:searchableAs\\(\\)\\.$#"
10
- count: 4
+ message: "#^Call to an undefined method Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:toSearchableArray\\(\\)\\.$#"
+ count: 1
11
+ path: src/PostgresEngine.php
12
+ -
+ message: "#^Call to an undefined method TModel of Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:searchableAs\\(\\)\\.$#"
- message: "#^Call to an undefined method Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:toSearchableArray\\(\\)\\.$#"
+ message: "#^Call to an undefined method TModel of Illuminate\\\\Database\\\\Eloquent\\\\Model\\:\\:getDeletedAtColumn\\(\\)\\.$#"
count: 1
phpstan.neon
@@ -7,8 +7,6 @@ parameters:
paths:
- src/
- checkGenericClassInNonGenericObjectType: false
# Level 9 is the highest level
level: 9
0 commit comments