There is no license information available for the latest version (dev-master) of this package.

A tiny PHP Framework

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/hildalove/tiny

dev-master 2015-09-04 08:17 UTC

This package is not auto-updated.

Last update: 2026-02-04 16:12:35 UTC


README

目前只支持 tiny.dev/home/index 这种路由格式

Nginx配置

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

框架特点

  • 单入口文件
  • 采用了单例模式、工厂模式、注册模式
  • 基于psr-4的自动加载
  • Mysql 读写分离
  • Redis连接
  • Composer 帮助PHPUnit的加载测试类

Example

  • Redis存储用户登录信息
  • 用Redis实现消息队列
  • 实现了MySQL-PRoxy (读写分离)
  • PHPUnit 单元测试的写法