承接 bootie/scheleton 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bootie/scheleton

Composer 安装命令:

composer create-project bootie/scheleton

包简介

Bootie PHP 5 Framework Project Scheleton

README 文档

README

PHP 5 Micro Web Application Framework

Based on Micromvc by David Pennington

This is a Bootie Framework Scheleton Project

You can see an online demo of this project here

You can see an Integrated Example Project

You can also clone a REST Project Example

Improvements

  • Dispatching method simplification
  • Routing request method based
  • Multiple database connections
  • Filters
  • Speed Cache
  • Model pagination
  • Flash messages

Install

Pull libraries

$ composer install

Create an empty database and set your access credentials here

$ cat config/config.sample.php > config/config.php
$ nano config/config.php

With Micro migrations tools run

$ php cli create
$ php cli restore

Nginx

Nginx suggested directive

server {
    root /var/www/bootie/public;

    index index.php index.html index.htm;

    server_name bootie.local;

    location / {
            try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

}

Now you can login

username: admin
password: admin

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-09