Skip to content

Commit 4916960

Browse files
committed
Add Laravel 5.5 support including package auto discovery
1 parent 8f04fac commit 4916960

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
],
2222
"require": {
2323
"php": ">=5.6.4",
24-
"illuminate/contracts": "5.3.*|5.4.*",
25-
"illuminate/database": "5.3.*|5.4.*",
26-
"illuminate/support": "5.3.*|5.4.*",
24+
"illuminate/contracts": "5.3.*|5.4.*|5.5.*",
25+
"illuminate/database": "5.3.*|5.4.*|5.5.*",
26+
"illuminate/support": "5.3.*|5.4.*|5.5.*",
2727
"laravel/scout": "2.*|3.*"
2828
},
2929
"require-dev": {
@@ -42,5 +42,12 @@
4242
},
4343
"scripts": {
4444
"test": "vendor/bin/phpunit"
45+
},
46+
"extra": {
47+
"laravel": {
48+
"providers": [
49+
"ScoutEngines\\Postgres\\PostgresEngineServiceProvider"
50+
]
51+
}
4552
}
4653
}

0 commit comments

Comments
 (0)