2017 © Pedro Peláez
 

project yaf-framework

Yaf 命名空间基础框架

image

hutong/yaf-framework

Yaf 命名空间基础框架

  • Friday, July 21, 2017
  • by HuTong
  • Repository
  • 1 Watchers
  • 1 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

yaf-framework

yaf命名空间框架, (*1)

学习交流群

630730920, (*2)

安装

composer create-project hutong/yaf-framework www dev-master, (*3)

server {
  listen 80;
  server_name www.xxx.cn;
  root   /path/public;
  index  index.php;

  charset utf-8;

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

  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;
  }
}

The Versions

21/07 2017

dev-master

9999999-dev

Yaf 命名空间基础框架

  Sources   Download

MIT

The Requires

 

by Avatar HuTong