diff --git a/app/config/config.php b/app/config/config.php index 424e0534..c1366c61 100644 --- a/app/config/config.php +++ b/app/config/config.php @@ -26,11 +26,11 @@ $config = [ // the _path suffixed options to an empty string, and set 'route_by' to 'host'. // ---------------------------------------------------------------------------- - 'route_by' => 'host', // host or path - 'anime_host' => 'anime.timshomepage.net', - 'manga_host' => 'manga.timshomepage.net', - 'anime_path' => '', - 'manga_path' => '', + 'route_by' => 'path', // host or path + 'anime_host' => '', + 'manga_host' => '', + 'anime_path' => 'anime', + 'manga_path' => 'manga', // Which list should be the default? 'default_list' => 'anime', // anime or manga diff --git a/phpci.yml b/phpci.yml new file mode 100644 index 00000000..3eeb10f7 --- /dev/null +++ b/phpci.yml @@ -0,0 +1,23 @@ +build_settings: + verbose: true + ignore: + - "tests" + - "vendor" + +setup: + env: + PHPCI: true + +test: + php_unit: + config: 'phpunit.xml' + php_docblock_checker: + allowed_warnings: 0 + skip_classes: true + php_loc: + php_mess_detector: + allow_failures: true + rules: + - "unusedcode" + - "naming" +complete: \ No newline at end of file