Avoid memory issue in exception
[friendica.git/.git] / config / addon-sample.config.php
1 <?php
2
3 // Addon configuration
4
5 // Copy this configuration file to addon.config.php and edit it if you want to configure addons, see below example for the twitter addon
6
7 return [
8         'twitter' => [
9                 'consumerkey' => '1234567890',
10                 'consumersecret' => 'ABCDEFGHIJKLMONPQRSTUVWXYZ',
11         ],
12 ];