aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ConfigTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Introduce the Updater class whichArthurHoaro2016-02-151-42/+0
| | | | | | | * contains methods designed to be run once. * is able to upgrade the datastore or the configuration. * is based on methods names, stored in a text file with ';' separator (updates.txt). * begins with existing function 'mergeDeprecatedConfigFile()' (options.php).
* Fixes #378 - Plugin administration UI.ArthurHoaro2016-01-311-0/+109
|
* Unit tests for Router and PluginManager.ArthurHoaro2015-11-071-177/+177
|
* PHP: ensure 5.3 compatibility, refactor timezone utilitiesVirtualTam2015-07-131-5/+5
| | | | | | | | | | | | | | | | | Relates to #250 Modifications - supported version - bump required version from 5.1.0 to 5.3.x - update README - add PHP 5.3 to Travis environments - rewrite array declarations: explicitely use array() instead of [] - move checkPHPVersion to application/Utils.php - move timezone functions to application/TimeZone.php - cleanup code - improve test coverage Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* All settings are now stored in config.phpArthurHoaro2015-07-091-0/+177
Isolate functions related to config in Config.php + add unit tests + code_sniffer. options.php is not supported anymore, but its content will be automatically saved into config.php Fixes #shaarli/Shaarli#41 *TODO*: update [documentation](https://github.com/shaarli/Shaarli/wiki#configuration).