https://github.com/kenjis/codeigniter3-namespaced-controller
CodeIgniter3 Namespaced Controller
https://github.com/kenjis/codeigniter3-namespaced-controller
Last synced: 9 months ago
JSON representation
CodeIgniter3 Namespaced Controller
- Host: GitHub
- URL: https://github.com/kenjis/codeigniter3-namespaced-controller
- Owner: kenjis
- License: mit
- Created: 2016-07-02T21:53:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-08-03T21:36:27.000Z (over 6 years ago)
- Last Synced: 2025-03-27T17:37:05.893Z (10 months ago)
- Language: HTML
- Homepage:
- Size: 1.65 MB
- Stars: 17
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE.md
Awesome Lists containing this project
README
# CodeIgniter3 Namespaced Controller
This repository provides namespaced controller to [CodeIgniter](https://github.com/bcit-ci/CodeIgniter) 3.0.
## Requirements
* PHP 5.4.0 or later
## Including
* CodeIgniter 3.0.6
* ci-phpunit-test v0.12.2-dev
## Usage
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.
## Related Projects for CodeIgniter 3.0
* [CodeIgniter Composer Installer](https://github.com/kenjis/codeigniter-composer-installer)
* [Cli for CodeIgniter 3.0](https://github.com/kenjis/codeigniter-cli)
* [ci-phpunit-test](https://github.com/kenjis/ci-phpunit-test)
* [CodeIgniter Simple and Secure Twig](https://github.com/kenjis/codeigniter-ss-twig)
* [CodeIgniter Doctrine](https://github.com/kenjis/codeigniter-doctrine)
* [CodeIgniter Deployer](https://github.com/kenjis/codeigniter-deployer)
* [CodeIgniter3 Filename Checker](https://github.com/kenjis/codeigniter3-filename-checker)
* [CodeIgniter Widget (View Partial) Sample](https://github.com/kenjis/codeigniter-widgets)