mateusgroza/ci3-make-tools
Composer 安装命令:
composer require mateusgroza/ci3-make-tools
包简介
CLI tools for automatically generating files in CodeIgniter 3 projects (make-style commands).
README 文档
README
A CodeIgniter 3 development toolkit that provides convenient command-line tools for generating boilerplate code and managing project structure.
Installation
Install the package via Composer:
composer require mateusgroza/ci3-make-tools
Configuration
Add the following script to your composer.json file to enable the composer make command:
{
"scripts": {
"make": "@php vendor/mateusgroza/ci3-make-tools/bin/make"
}
}
After adding the script, you can use composer make as the base command for all generation tasks.
Available Commands
Environment Variables Generator
Create environment variables in both env.php and env.php.example (or env.example.php) files:
composer make env {CONSTANT_NAME} {VALUE_FOR_ENV_ONLY} "{DESCRIPTION}"
Example:
composer make env DATABASE_HOST "localhost" "Database host configuration"
Migration Generator
Generate database migration files with various operations:
composer make migration {command} {table_name} {version}
Parameters:
command: The migration operation (create,alter,insert,update)table_name: Name of the database tableversion: Migration version (defaults to last_version + 1)
Examples:
composer make migration create users composer make migration alter users 002 composer make migration insert products 003 composer make migration update orders
Module Generator (HMVC Projects Only)
Generate modules for HMVC (Hierarchical Model-View-Controller) projects:
composer make module {application_folder} {module_name} {submenu_name}
Parameters:
application_folder: The application directory namemodule_name: Name of the module to createsubmenu_name: Name of the submenu
Example:
composer make module admin user_management users
Usage
All commands start with composer make followed by the specific generator and its parameters. Make sure you have properly configured the composer script as shown in the configuration section above.
Requirements
- PHP 7.4 or higher
- CodeIgniter 3.x
- Composer
Contributing
Feel free to contribute to this project by submitting issues or pull requests.
License
This project is open-sourced software licensed under the MIT license.
mateusgroza/ci3-make-tools 适用场景与选型建议
mateusgroza/ci3-make-tools 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 08 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mateusgroza/ci3-make-tools 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mateusgroza/ci3-make-tools 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 32
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-02