Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liebsen/bootiescheleton
Micro Web Application Framework Scheleton
https://github.com/liebsen/bootiescheleton
Last synced: about 1 month ago
JSON representation
Micro Web Application Framework Scheleton
- Host: GitHub
- URL: https://github.com/liebsen/bootiescheleton
- Owner: liebsen
- License: agpl-3.0
- Created: 2015-10-09T14:00:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-05T16:44:52.000Z (almost 9 years ago)
- Last Synced: 2024-04-26T08:47:53.761Z (9 months ago)
- Language: PHP
- Homepage: http://bootie.devmeta.net
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
BootiePHP 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