Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenjis/codeigniter-simple-module
CodeIgniter Simple Module
https://github.com/kenjis/codeigniter-simple-module
Last synced: about 1 month ago
JSON representation
CodeIgniter Simple Module
- Host: GitHub
- URL: https://github.com/kenjis/codeigniter-simple-module
- Owner: kenjis
- Created: 2015-10-20T02:30:19.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-20T02:30:39.000Z (about 9 years ago)
- Last Synced: 2024-10-02T08:07:48.812Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 141 KB
- Stars: 11
- Watchers: 6
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodeIgniter Simple Module
This is a simple module system using [CodeIgniter packages](https://www.codeigniter.com/user_guide/libraries/loader.html#application-packages). No HMVC.
## Folder Structure
```
codeigniter/
├── application/
│ ├── controllers/
│ │ └── welcome -> ../modules/welcome/controllers/
│ └── modules/
│ └── welcome/
│ ├── controllers/
│ ├── models/
│ └── views/
├── composer.json
├── composer.lock
├── public/
│ └── index.php
└── vendor/
└── codeigniter/
└── framework/
└── system/
```### How to Run (PHP 5.4 or later)
~~~
$ cd /path/to/codeigniter
$ php -S localhost:8000 -t public/ bin/router.php
~~~Access `http://localhost:8080/welcome`.