13 lines
284 B
PHP
13 lines
284 B
PHP
|
<?php
|
||
|
|
||
|
// Addon configuration
|
||
|
|
||
|
// Copy this configuration file to addon.config.php and edit it if you want to configure addons, see below example for the twitter addon
|
||
|
|
||
|
return [
|
||
|
'twitter' => [
|
||
|
'consumerkey' => 'localhost',
|
||
|
'consumersecret' => 'mysqlusername',
|
||
|
],
|
||
|
];
|