Skip to content
/ ignite Public

Composer-based project skeleton for the Codeigniter framework.

License

Notifications You must be signed in to change notification settings

rougin/ignite

Repository files navigation

Ignite

Latest Version on Packagist Software License Total Downloads

Ignite is yet another Codeigniter application with an alternative folder structure:

  • Moved the application directory as the root directory; and
  • Created a web directory to store the main index.php file.

Installation

Install Ignite via Composer:

$ composer create-project rougin/ignite "acme"

Folder Structure

acme/
├── cache/
├── config/
├── controllers/
├── core/
├── helpers/
├── hooks/
├── language/
├── libraries/
├── logs/
├── models/
├── third_party/
├── vendor/
├── views/
├── web/
│   ├── .htaccess
│   └── index.php
└── composer.json

NOTE: Codeigniter's documentation can be found in this link.

Run PHP built-in server (PHP 5.4 or later)

php -S localhost:8000 -t web/

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Credits

License

The MIT License (MIT). Please see LICENSE for more information.