Download the PHP package satoripophq/codeigniter-composer without Composer
On this page you can find all versions of the php package satoripophq/codeigniter-composer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download satoripophq/codeigniter-composer
More information about satoripophq/codeigniter-composer
Files in satoripophq/codeigniter-composer
Package codeigniter-composer
Short Description Package to install The CodeIgniter framework 3 via Composer
License MIT
Homepage http://www.sabri-elgueder.tn
Informations about the package codeigniter-composer
The CodeIgniter framework 3 Composer Installer
This package installs the offical CodeIgniter (version 3.1.*
) with secure folder structure via Composer.
Note: If you want to install CodeIgniter4 (under development), see https://github.com/sabri-elgueder/codeigniter-composer/tree/4.x.
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:
Update CodeIgniter
You must update files manually if files in application
folder or index.php
change. Check CodeIgniter User Guide.