takuya-motoshima/ci-ex

Extend CodeIgniter for ease of use


Keywords
composer, codeigniter
License
MIT

Documentation

CodeIgniter Extensions Installer

Latest Stable Version Total Downloads Latest Unstable Version License

This package installs the offical CodeIgniter (version 3.1.*) with secure folder structure via Composer.

You can update CodeIgniter system folder to latest version with one command.

Folder Structure

codeigniter/
├── application/
├── composer.json
├── composer.lock
├── public/
│   ├── .htaccess
│   └── index.php
└── vendor/
    └── codeigniter/
        ├── framework/
        │   └── system/
        ├── facebook/
        │   └── graph-sdk/
        ├── hybridauth/
        │   └── hybridauth/
        ├── symfony/
        │   └── polyfill-mbstring/
        ├── twig/
        │   └── twig/
        └── framework/

Requirements

How to Use

Install CodeIgniter

$ composer create-project takuya-motoshima/ci-ex my-project

Above command installs public/.htaccess to remove index.php in your URL. If you don't need it, please remove it.

And it changes application/config/config.php:

$config['base_url'] = '';
↓
if (!empty($_SERVER['HTTP_HOST'])) {$config['base_url'] = "//".$_SERVER['HTTP_HOST'] . str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);}
$config['enable_hooks'] = FALSE;
↓
$config['enable_hooks'] = TRUE;
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
↓
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-,';
$config['sess_save_path'] = NULL;
↓
$config['sess_save_path'] = APPPATH . 'session';
$config['cookie_httponly']  = FALSE;
↓
$config['cookie_httponly']  = TRUE;
$config['composer_autoload'] = FALSE;
↓
$config['composer_autoload'] = realpath(APPPATH . '../vendor/autoload.php');
$config['index_page'] = 'index.php';
↓
$config['index_page'] = '';

You must update files manually if files in application folder or index.php change. Check CodeIgniter User Guide.

Reference