Skip to content

liebsen/BootieREST

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bootie

PHP 5 Micro Web Application Framework

Based on Micromvc by David Pennington

This is a Bootie Framework REST Example Project

You can see an online demo of this project

You can see an Integrated Example Project

You can see a REST Example Project

You can also clone a Scheleton Project


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

About

Tiny MVC PHP Framework REST Project Example

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published