tinymvc/skeleton
最新稳定版本:v2.3.1
Composer 安装命令:
composer create-project tinymvc/skeleton
包简介
TinyMvc is a minimalist PHP framework to craft blazing-fast RESTful APIs and modern web apps.
README 文档
README
A minimalist MVC PHP framework for modern web artisans
Lightning-fast · Elegant Syntax · Developer Friendly
Key Features
- MVC Architecture - Clean separation of concerns
- Lightning Fast - Minimal overhead, maximum performance
- Built-in ORM - Simple ActiveRecord implementation
- Routing System - RESTful routing with parameter binding
- Dependency Injection - Powerful IoC container
- Template Engine - Blade-Like Lightweight, Super Fast Template Engine
- Security First - CSRF protection, Throttling, input sanitization & validation
- Queue - Minimal Queue Jobs up-to 4 workers.
- Cache - Fast & Lightweight Caching System
- CLI Tools - Built-in development server and generator commands
Installation
Create a new project with Composer:
composer create-project tinymvc/skeleton myapp
Start development server:
cd myapp
php spark serve
Production Note: Configure your web server to point to the /public directory.
Quick Start
<?php use Spark\Facades\Route; Route::get('welcome/{name}', function($name) { return "Welcome, $name!"; });
Documentation
Full documentation is available at: https://tinymvc.github.io
Contributing
We welcome contributions! Please:
- ⭐ Star the repository
- 🐞 Report issues here
- 🛠 Submit PRs following our contribution guidelines
License
TinyMVC is open-source software licensed under the MIT License.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-02