Download the PHP package lisijie/framework-app without Composer
On this page you can find all versions of the php package lisijie/framework-app. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download lisijie/framework-app
More information about lisijie/framework-app
Files in lisijie/framework-app
Download lisijie/framework-app
More information about lisijie/framework-app
Files in lisijie/framework-app
Vendor lisijie
Package framework-app
Short Description Basic Application Template
License BSD-3-Clause
Homepage https://github.com/lisijie/php-framework-app
Package framework-app
Short Description Basic Application Template
License BSD-3-Clause
Homepage https://github.com/lisijie/php-framework-app
Keywords frameworkapplication template
Please rate this library. Is it a good library?
Informations about the package framework-app
基于我的PHP框架的应用模板
安装说明
直接使用composer安装:
目录结构说明
|- app 应用目录
| |- Command 命令行脚本控制器(可选)
| |- Config 配置文件
| |- Controller Web控制器
| |- Exception 自定义异常类型和异常处理器(可选)
| |- Model 数据模型,提供数据的读写接口,一张表对应一个类(可选)
| |- Service Service模块,封装业务逻辑,操作Model(可选)
| |- View 视图模板文件
|- data 运行时数据目录(日志、缓存文件等)
|- public 发布目录,存放外部可访问的资源和index.php入口文件
|- vendor composer第三方包目录
服务器配置
Nginx示例
server {
listen 80;
server_name example.com;
root /path/to/project/public;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
fastcgi_param ENVIRONMENT development;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
All versions of framework-app with dependencies
PHP Build Version
Package Version
The package lisijie/framework-app contains the following files
Loading the files please wait ....