forjix/forjix
最新稳定版本:0.1.0
Composer 安装命令:
composer require forjix/forjix
包简介
A lightweight, modular PHP framework
README 文档
README
A lightweight, modular PHP framework for building modern web applications.
Requirements
- PHP 8.2+
- Composer
Installation
composer require forjix/forjix
Or create a new project using the skeleton:
composer create-project forjix/skeleton my-app
Packages
Forjix is composed of the following modular packages:
| Package | Description |
|---|---|
| forjix/core | Application container and service providers |
| forjix/http | HTTP routing, requests, and responses |
| forjix/database | Database connections, query builder, and migrations |
| forjix/orm | Active Record ORM with relationships |
| forjix/view | Blade-like templating engine |
| forjix/console | CLI tools and commands |
| forjix/validation | Data validation |
| forjix/support | Helper utilities and collections |
Quick Start
use Forjix\Core\Application; use Forjix\Http\Router; $app = new Application(); $router = $app->get(Router::class); $router->get('/', function () { return 'Hello, Forjix!'; }); $app->run();
License
GPL-3.0
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2026-01-05