此包最新版本(dev-master)没有可用的许可证信息。

一个小巧的PHP框架

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

This package is not auto-updated.

Last update: 2024-10-02 09:46:48 UTC


README

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

Nginx配置

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

框架特点

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

示例

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