2017 © Pedro Peláez
 

library hades

The Hades Framework.

image

hades/hades

The Hades Framework.

  • Monday, September 14, 2015
  • by jianfengye
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Hades PHP Framework Install Project

Hades是一款容易上手的PHP框架,它在很大程度上借鉴了laravel框架,但是对于laravel中很多部分进行重新思考和构思。, (*1)

所以如果你使用过laravel框架,你会非常容易上手这个框架。, (*2)

本项目为Hades框架的安装项目, (*3)

安装

composer install hades

目录路径

+--+
   |
   +- app/                      控制台程序
   +- config/                   配置文件
   +- public/                   可访问目录
   +- storage/                  临时文件,日志,session等
   +- tests/                    测试用例
   +- views/                    模版路径
   +- vendor/                   第三方插件

nginx配置

参考:, (*4)

server {
        listen       80;
        server_name hades.cn;
        access_log /tmp/hades.cn.access.log logstash;
        error_log /tmp/hades.error.log notice;

        root /mnt/www/hades/public/;
        index index.php;

        location ~ \.php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }

        location / {
            if (!-e $request_filename){
                rewrite ^/(.*) /index.php last;
            }
        }
}

License

The Hades framework is open-sourced software licensed under the MIT license, (*5)

The Versions

14/09 2015

dev-master

9999999-dev

The Hades Framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yejianfeng

framework hades

14/09 2015

1.0.0

1.0.0.0

The Hades Framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yejianfeng

framework hades