PHPackages                             roniwahyu/cistarterku - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. roniwahyu/cistarterku

ActiveProject[Framework](/categories/framework)

roniwahyu/cistarterku
=====================

The CodeIgniter Application with Composer

015PHP

Since Mar 28Pushed 7y ago1 watchersCompare

[ Source](https://github.com/roniwahyu/cistarterku)[ Packagist](https://packagist.org/packages/roniwahyu/cistarterku)[ RSS](/packages/roniwahyu-cistarterku/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Codeigniter Starter 2019
========================

[](#codeigniter-starter-2019)

Dimodifikasi dari berbagai sumber oleh Syahroni Wahyu Iriananda awal project

Modified and Influencer
-----------------------

[](#modified-and-influencer)

CodeIgniter Composer Installer

kenjis/codeigniter-composer-installer

[![Latest Stable Version](https://camo.githubusercontent.com/b6ef3514db955b5d351f0058b980a66c2b0c39488644cc9caeb98c9b1243a37b/68747470733a2f2f706f7365722e707567782e6f72672f6b656e6a69732f636f646569676e697465722d636f6d706f7365722d696e7374616c6c65722f762f737461626c65)](https://packagist.org/packages/kenjis/codeigniter-composer-installer) [![Total Downloads](https://camo.githubusercontent.com/34a496534a03fcb10730388d465b6c929a25fc173b9871368c7649223b12f224/68747470733a2f2f706f7365722e707567782e6f72672f6b656e6a69732f636f646569676e697465722d636f6d706f7365722d696e7374616c6c65722f646f776e6c6f616473)](https://packagist.org/packages/kenjis/codeigniter-composer-installer) [![Latest Unstable Version](https://camo.githubusercontent.com/10ba073383f5b98be8a20f4a256d9584090c032fe6f5a7ab763d30599ca8c5f1/68747470733a2f2f706f7365722e707567782e6f72672f6b656e6a69732f636f646569676e697465722d636f6d706f7365722d696e7374616c6c65722f762f756e737461626c65)](https://packagist.org/packages/kenjis/codeigniter-composer-installer) [![License](https://camo.githubusercontent.com/9ed20766eea1d8bb05eabe6450bbc67267a8ccd401160619508fbc44cd05f8d8/68747470733a2f2f706f7365722e707567782e6f72672f6b656e6a69732f636f646569676e697465722d636f6d706f7365722d696e7374616c6c65722f6c6963656e7365)](https://packagist.org/packages/kenjis/codeigniter-composer-installer)

This package installs the offical [CodeIgniter](https://github.com/bcit-ci/CodeIgniter) (version `3.1.*`) with secure folder structure via Composer.

**Note:** If you want to install CodeIgniter4 (under development), see .

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

Folder Structure
----------------

[](#folder-structure)

```
codeigniter/
├── application/
├── composer.json
├── composer.lock
├── public/
│   ├── .htaccess
│   └── index.php
└── vendor/
    └── codeigniter/
        └── framework/
            └── system/

```

Requirements
------------

[](#requirements)

- PHP 5.3.7 or later
- `composer` command (See [Composer Installation](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx))
- Git

How to Use
----------

[](#how-to-use)

### Install CodeIgniter

[](#install-codeigniter)

```
$ composer create-project roniwahyu/cistarterku:dev-master direktorianda

```

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

[](#install-translations-for-system-messages)

If you want to install translations for system messages:

```
$ cd /path/to/codeigniter
$ php bin/install.php translations 3.1.0

```

#### Install Third Party Libraries

[](#install-third-party-libraries)

[CodeIgniter HMVC Modules](https://github.com/jenssegers/codeigniter-hmvc-modules):

```
$ php bin/install.php hmvc-modules master

```

[Modular Extensions - HMVC](https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc):

```
$ php bin/install.php modular-extensions-hmvc codeigniter-3.x

```

[Ion Auth](https://github.com/benedmunds/CodeIgniter-Ion-Auth):

```
$ php bin/install.php ion-auth 2

```

[CodeIgniter3 Filename Checker](https://github.com/kenjis/codeigniter3-filename-checker):

```
$ php bin/install.php restserver 2.7.2

```

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

[](#run-php-built-in-server-php-54-or-later)

```
$ cd /path/to/codeigniter
$ bin/server.sh

```

### Update CodeIgniter

[](#update-codeigniter)

```
$ cd /path/to/codeigniter
$ composer update

```

You must update files manually if files in `application` folder or `index.php` change. Check [CodeIgniter User Guide](http://www.codeigniter.com/user_guide/installation/upgrading.html).

Reference
---------

[](#reference)

- [Composer Installation](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)
- [CodeIgniter](https://github.com/bcit-ci/CodeIgniter)
- [Translations for CodeIgniter System](https://github.com/bcit-ci/codeigniter3-translations)

Related Projects for CodeIgniter 3.x
------------------------------------

[](#related-projects-for-codeigniter-3x)

- [Cli for CodeIgniter 3.0](https://github.com/kenjis/codeigniter-cli)
- [ci-phpunit-test](https://github.com/kenjis/ci-phpunit-test)
- [CodeIgniter Simple and Secure Twig](https://github.com/kenjis/codeigniter-ss-twig)
- [CodeIgniter Doctrine](https://github.com/kenjis/codeigniter-doctrine)

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7cd1e3f157d12d53af83f70d20b30141721c7518ff62ba88b2a32e18a13c2b3a?d=identicon)[roniwahyu](/maintainers/roniwahyu)

---

Top Contributors

[![roniwahyu](https://avatars.githubusercontent.com/u/1689279?v=4)](https://github.com/roniwahyu "roniwahyu (9 commits)")

### Embed Badge

![Health badge](/badges/roniwahyu-cistarterku/health.svg)

```
[![Health](https://phpackages.com/badges/roniwahyu-cistarterku/health.svg)](https://phpackages.com/packages/roniwahyu-cistarterku)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
