Update dependencies for Laravel10

This commit is contained in:
DariusIII
2023-02-17 13:40:31 +01:00
parent ea946394e1
commit 4678a3f7ad
3 changed files with 927 additions and 1142 deletions
+10 -13
View File
@@ -37,19 +37,16 @@ return [
* @see https://www.elastic.co/guide/en/elasticsearch/client/php-api/2.0/_configuration.html#_inline_host_configuration
*/
'hosts' => [
[
'host' => env('ELASTICSEARCH_HOST', 'localhost'),
'port' => env('ELASTICSEARCH_PORT', 9200),
'scheme' => env('ELASTICSEARCH_SCHEME', null),
'user' => env('ELASTICSEARCH_USER', null),
'pass' => env('ELASTICSEARCH_PASS', null),
// If you are connecting to an Elasticsearch instance on AWS, you will need these values as well
'aws' => env('AWS_ELASTICSEARCH_ENABLED', false),
'aws_region' => env('AWS_REGION', ''),
'aws_key' => env('AWS_ACCESS_KEY_ID', ''),
'aws_secret' => env('AWS_SECRET_ACCESS_KEY', ''),
],
env('ELASTICSEARCH_SCHEME', 'http').'://'.env('ELASTICSEARCH_HOST', 'localhost').':'.env('ELASTICSEARCH_PORT', 9200),
],
'basicAuthentication' => [
'user' => env('ELASTICSEARCH_USER', null),
'pass' => env('ELASTICSEARCH_PASS', null),
],
'cloud_api' => [
// Alternatively, you can log in via API keys
'api_id' => env('ELASTICSEARCH_API_ID', null),
'api_key' => env('ELASTICSEARCH_API_KEY', null),
],
/*