frado/frado

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

frado php framework

Maintainers

Details

gitee.com/1065227709/frado

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Type:project

dev-master 2020-06-15 09:06 UTC

This package is not auto-updated.

Last update: 2024-04-27 21:25:31 UTC


README

这是一个PHP MVC框架,它基于一些开源框架/模块构造而成

安装

使用Composer来安装:

$ git clone https://gitee.com/1065227709/frado.git
$ cd frado
$ composer install

根据需要可修改config/*.php文件

运行环境

PHP版本:
运行环境要求PHP7.2或更新版本

Nignx配置:

server {
    listen       80;
    server_name  www.test.com;
    root /path/to/frado-run/public;
    log_not_found off;

    location / {
        if ($uri ~* "^/(favicon\.ico|robots\.txt|crossdomain\.xml)") {
            break;
        }
        try_files $uri /index.php?$args;
    }

    location ~ \.php$ {
        include        fastcgi.conf;
        fastcgi_index  index.php;
        fastcgi_pass   127.0.0.1:9000;
    }

}

License

The Frado Framework is licensed under the MIT license. See License File for more information.