Download the PHP package andri-sudarmawijaya/codeigniter-composer-installer without Composer
On this page you can find all versions of the php package andri-sudarmawijaya/codeigniter-composer-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download andri-sudarmawijaya/codeigniter-composer-installer
More information about andri-sudarmawijaya/codeigniter-composer-installer
Files in andri-sudarmawijaya/codeigniter-composer-installer
Package codeigniter-composer-installer
Short Description Package to install CodeIgniter3 via Composer with secure folder structure.
License MIT
Homepage https://github.com/andri-sudarmawijaya/codeigniter-composer-installer
Informations about the package codeigniter-composer-installer
CodeIgniter Composer Installer
This package installs the offical CodeIgniter (version 3.1.*
) with secure folder structure via Composer.
This repo is based on CodeIgniter Composer Installer. Thanks to kenjis.
You can update CodeIgniter system folder to latest version with one command.
Folder Structure
Requirements
- PHP 5.3.7 or later
composer
command (See Composer Installation)- Git
How to Use
Install CodeIgniter
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['composer_autoload'] = FALSE;
↓
$config['composer_autoload'] = realpath(APPPATH . '../vendor/autoload.php');
$config['index_page'] = 'index.php';
↓
$config['index_page'] = '';
Install Translations for System Messages
If you want to install translations for system messages:
Install Third Party Libraries
CodeIgniter3 Filename Checker:
CodeIgniter Developer Toolbar:
Run PHP built-in server (PHP 5.4 or later)
Update CodeIgniter
You must update files manually if files in application
folder or index.php
change. Check CodeIgniter User Guide.