HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/zipwire/zipwire.nl/vendor/mmanos/laravel-search/src/config/search.php
<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| Default Search Driver
	|--------------------------------------------------------------------------
	|
	| The search API supports a variety of back-ends via a unified
	| API, giving you convenient access to each back-end using the same
	| syntax for each one. Here you may set the default search driver.
	|
	| Supported: "zend", "elasticsearch", "algolia"
	|
	*/

	'default' => 'zend',

	/*
	|--------------------------------------------------------------------------
	| Default Index
	|--------------------------------------------------------------------------
	|
	| Specify the default index to use when an index is not specified.
	|
	*/

	'default_index' => 'default',

	/*
	|--------------------------------------------------------------------------
	| Search Connections
	|--------------------------------------------------------------------------
	|
	| Here you may configure the connection information for each server that
	| is used by your application. A default configuration has been added
	| for each back-end shipped with this package. You are free to add more.
	|
	*/

	'connections' => array(

		'zend' => array(
			'driver' => 'zend',
			'path'   => storage_path().'/search',
		),

		'elasticsearch' => array(
			'driver' => 'elasticsearch',
			'config' => array(
				'hosts' => array('localhost:9200'),
			),
		),

		'algolia' => array(
			'driver' => 'algolia',
			'config' => array(
				'application_id' => '',
				'admin_api_key'  => '',
			),
		),

	),

);