library tiny
A tiny PHP Framework
hildalove/tiny
A tiny PHP Framework
- Friday, September 4, 2015
- by hanfeng
- Repository
- 1 Watchers
- 1 Stars
- 0 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Tiny PHP Framework
目前只支持 tiny.dev/home/index 这种路由格式, (*1)
Nginx配置
location / {
try_files $uri $uri/ /index.php?$query_string;
}
框架特点
- 单入口文件
- 采用了单例模式、工厂模式、注册模式
- 基于psr-4的自动加载
- Mysql 读写分离
- Redis连接
- Composer 帮助PHPUnit的加载测试类
Example
- Redis存储用户登录信息
- 用Redis实现消息队列
- 实现了MySQL-PRoxy (读写分离)
- PHPUnit 单元测试的写法