2017 © Pedro Peláez
 

library bootie

Tiny PHP 5 Web Application Framework Library

image

bootie/bootie

Tiny PHP 5 Web Application Framework Library

  • Wednesday, November 30, 2016
  • by devmeta
  • Repository
  • 2 Watchers
  • 0 Stars
  • 176 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 1 % Grown

The README.md

Bootie

PHP 5 Micro Web Application Framework

Based on Micromvc by David Pennington

This is the Bootie Framework Library, (*1)

You can see an online demo of this project, (*2)

Please consider clone this repository before for an Example Project, (*3)

You can see a REST Example, (*4)

You can also clone a Scheleton Project, (*5)

Improvments

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

Install

Create an empty database and set your access credentials here, (*6)

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

With Micro migrations tools run, (*7)

$ php cli create
$ php cli restore

Nginx

Nginx suggested directive, (*8)

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

The Versions

30/11 2016

dev-master

9999999-dev http://bootie.devmeta.net

Tiny PHP 5 Web Application Framework Library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

framework php mvc

26/10 2015

dev-devel

dev-devel http://bootie.devmeta.net

Tiny PHP 5 Web Application Framework Library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

framework php mvc