# simple-framework **Repository Path**: orh/simple-framework ## Basic Information - **Project Name**: simple-framework - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Simple Framework 学习基本框架的搭建 #### 环境 * PHP >= 7.0 #### 部署 1. 拉取代码 ``` $ git clone git@gitee.com:orh/simple-framework.git ``` 2. 安装扩展包 ``` $ composer install ``` 3. 配置 `Nginx` 优雅链接 ``` location / { try_files $uri $uri/ /index.php?$query_string; } ```