31 lines
599 B
PHP
31 lines
599 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
/*
|
|
* Whether to enable Segment or not.
|
|
*/
|
|
'enabled' => true,
|
|
|
|
/*
|
|
* The key which enables you to write to the Segment.com API.
|
|
*/
|
|
'write_key' => '',
|
|
|
|
/*
|
|
* Other configurations. Currently unused.
|
|
*/
|
|
'consumer' => 'socket',
|
|
'debug' => false,
|
|
'ssl' => true,
|
|
'error_handler' => null,
|
|
];
|