This repository provides namespaced controller to CodeIgniter 3.0.
- PHP 5.4.0 or later
- CodeIgniter 3.1.10
- ci-phpunit-test v0.12.2-dev
You can configure namespace for controllers with $config['controller_namespace']
in application/config/config.php
. The default namespace is app\controllers
.
If you have app\controllers\abc\def\Ghi
controller, the path of the file must be application/controllers/abc/def/Ghi.php
.
- All sub folder names must be lower case.
- All sub namespace names must be the exact same case as folder names.