PHPackages                             hafijul233/ci-recharge - 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. [Database &amp; ORM](/categories/database)
4. /
5. hafijul233/ci-recharge

Abandoned → [codeigniter4/framework](/?search=codeigniter4%2Fframework)Library[Database &amp; ORM](/categories/database)

hafijul233/ci-recharge
======================

CLI and Graphical Interface Tools for Codeigniter 4

1.9.5(5y ago)21572MITPHPPHP &gt;=7.2

Since Nov 16Pushed 3y ago1 watchersCompare

[ Source](https://github.com/adovasoft-rnd/ci-recharge)[ Packagist](https://packagist.org/packages/hafijul233/ci-recharge)[ RSS](/packages/hafijul233-ci-recharge/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (1)Versions (13)Used By (0)

Codeigniter4 Recharge
=====================

[](#codeigniter4-recharge)

[![Build Status](https://camo.githubusercontent.com/275cea23932393a73c3dc7d38d2a708c02e3c67c340146d2d5af350e746cfb14/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f686166696a756c3233332f63692d72656368617267652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/hafijul233/ci-recharge/build-status/master)[![Latest Stable Version](https://camo.githubusercontent.com/d8cb92b536c019d684f6f5a07f1e62d86bbeed4d45db06c7939125db84273dee/68747470733a2f2f706f7365722e707567782e6f72672f686166696a756c3233332f63692d72656368617267652f76)](//packagist.org/packages/hafijul233/ci-recharge)[![Total Downloads](https://camo.githubusercontent.com/a9d55a67add3a2f375e2e070cf6cf0e733e5362d913e3f2b998f69f97831c54f/68747470733a2f2f706f7365722e707567782e6f72672f686166696a756c3233332f63692d72656368617267652f646f776e6c6f616473)](//packagist.org/packages/hafijul233/ci-recharge)[![Latest Unstable Version](https://camo.githubusercontent.com/726e6e6dd7c1634bbc0bde8aa301bdd3df24b3ea3ba2b745eb3b8403efd8b406/68747470733a2f2f706f7365722e707567782e6f72672f686166696a756c3233332f63692d72656368617267652f762f756e737461626c65)](//packagist.org/packages/hafijul233/ci-recharge)[![License](https://camo.githubusercontent.com/030b1c9470f235714c277968fa24efe5a86fc9befd4edea7e49876f0e98cb8e4/68747470733a2f2f706f7365722e707567782e6f72672f686166696a756c3233332f63692d72656368617267652f6c6963656e7365)](//packagist.org/packages/hafijul233/ci-recharge)[![Code Intelligence Status](https://camo.githubusercontent.com/4b47801e7ec8718729dbd983656a8960460a8c10db307109572a547a603bc326/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f686166696a756c3233332f63692d72656368617267652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/3d3a84a6658afcd506081ac75721271a4bbd4a0843b855853f2235d4d457c36d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f686166696a756c3233332f63692d72656368617267652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/hafijul233/ci-recharge/?branch=master)

CI-recharge is a CLI Tools for skeleton file generation for **CodeIgniter4** PHP Framework. It is currently offering only skeleton generation using the **php spark make** commands. Default Namespace for all files are **App** and location will be detected from autoloader services.

Features
--------

[](#features)

Currently available features

- Configuration File
- Configuration File with Namespace
- Basic Controller File
- Basic Controller with Namespace
- Basic Controller with Specific Parent Class
- REST Controller File
- REST Controller with Namespace
- REST Controller with Specific Parent Class
- Entity File
- Entity File with Namespace
- Filter File
- Filter File with Namespace
- Migration File
- Migration File with Namespace
- Model File
- Model File with Namespace
- Seeder File
- Seeder File with Namespace

### Notices

[](#notices)

**CI-Recharge Dose not create any folder to store files.****For Entity a folder named `Entities` must be created under namespace**Example:

- app
    - Config
    - Controllers
    - `Entities`
    - Models
    - Views

### Command Syntax

[](#command-syntax)

Detail Implementation of every command are given in `src\Example\` Folder.

- **`ns` represents Namespace name**
- **`conf` represents Configuration name**
- **`cont` represents Controller name**
- **`rest` represents Rest Controller name**
- **`base` represents Base Controller name**
- **`en` represents Entity name**
- **`fn` represents Filter name**
- **`mg` represents Migration name**
- **`md` represents Model name**
- **`sd` represents Seeder name**

Basic Syntax are given below for **make series**:

CommandsyntaxConfig`php spark create:config`Config with Namespace`php spark create:config -n ns`Controller`php spark create:controller cont`Controller with Namespace`php spark create:controller cont -n ns`Controller with Parent`php spark create:controller cont -b base`Controller with Parent and Namespace`php spark create:controller cont -n ns -b base`REST Controller`php spark create:controller cont -rest`REST Controller with Namespace`php spark create:controller cont -n ns -rest`REST Controller with Parent`php spark create:controller cont -b base -rest`REST Controller with Parent and Namespace`php spark create:controller cont -n ns -b base -rest`Entity`php spark create:entity en`Entiy with Namespace`php spark create:entity en -n ns`Filter`php spark create:filter fn`Filter with Namespace`php spark create:filter fn -n ns`Migration`php spark create:migrate mg`Migration with Namespace`php spark create:migrate mg -n ns`Model`php spark create:model md`Model with Namespace`php spark create:model md -n ns`Seeder`php spark create:seed sd`Seeder with Namespace`php spark create:seed sd -n ns`Future Development
------------------

[](#future-development)

1. Create new migration files from existing database tables
2. Create new seeder files from table data

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.3% 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.

###  Release Activity

Cadence

Every ~8 days

Recently: every ~16 days

Total

11

Last Release

1919d ago

PHP version history (2 changes)1.0.0PHP &gt;=7.3

1.5.0PHP &gt;=7.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/870a352ea25df3ba3fb9443653badfb195324776da50cef0d8c730475f7681b1?d=identicon)[hafijul233](/maintainers/hafijul233)

---

Top Contributors

[![hafijul233](https://avatars.githubusercontent.com/u/24684511?v=4)](https://github.com/hafijul233 "hafijul233 (73 commits)")[![robinNcode](https://avatars.githubusercontent.com/u/58462388?v=4)](https://github.com/robinNcode "robinNcode (2 commits)")

---

Tags

ci4clicodeignitercodeigniter4commandlinecontrollerdblibrarymakemigrationmodemysqlphpseedssparksqlclicommand-linemigrationdatabasemysqlmariadbcodeignitermodelcontrollersparkcodeigniter4

### Embed Badge

![Health badge](/badges/hafijul233-ci-recharge/health.svg)

```
[![Health](https://phpackages.com/badges/hafijul233-ci-recharge/health.svg)](https://phpackages.com/packages/hafijul233-ci-recharge)
```

PHPackages © 2026

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