Add support for PHP array config files

- Add new base config files
- Remove useless DIRECTORY_SEPARATOR instances
This commit is contained in:
Hypolite Petovan
2018-11-25 01:42:05 -05:00
parent 6eb6cc94c7
commit d6eb1135e5
6 changed files with 676 additions and 43 deletions

View File

@@ -0,0 +1,12 @@
<?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',
],
];