bootie / project
Bootie PHP 5 Framework Integrated Example Project
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Type:project
pkg:composer/bootie/project
Requires
- php: >=5.3.0
- bootie/bootie: dev-master
This package is not auto-updated.
Last update: 2025-10-23 03:39:47 UTC
README
PHP 5 Micro Web Application Framework
Based on Micromvc by David Pennington
This is a Bootie Framework Integrated Example Project
You can see an online demo of this project
You can see REST example
You can also clone a scheleton project
This project covers
- Posts CMS and Frontpages with images and tags
- Static pages
- Auth system
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