Download the PHP package cahyadsn/ci-installer without Composer
On this page you can find all versions of the php package cahyadsn/ci-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cahyadsn/ci-installer
More information about cahyadsn/ci-installer
Files in cahyadsn/ci-installer
Package ci-installer
Short Description Package to install CodeIgniter3 via Composer with secure folder structure.
License MIT
Homepage https://github.com/cahyadsn/ci-installer
Informations about the package ci-installer
CodeIgniter v3.* Composer Installer
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
Requirements
- PHP version 5.6 or newer is recommended. It should work on 5.3.7 as well, but we strongly advise you NOT to run such old versions of PHP, because of potential security and performance issues, as well as missing features.
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
Modular Extensions (HMVC) for CodeIgniter 3:
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.