dev-master
9999999-dev http://devmeta.netBootie PHP 5 Framework REST Example Project
MIT
The Requires
- php >=5.3.0
- bootie/bootie dev-master
framework php mvc
Bootie PHP 5 Framework REST Example Project
This is a Bootie Framework REST Example Project, (*1)
You can see an online demo of this project, (*2)
You can see an Integrated Example Project, (*3)
You can see a REST Example Project, (*4)
You can also clone a Scheleton Project, (*5)
Pull libraries, (*6)
$ composer install
Create an empty database and set your access credentials here, (*7)
$ cat config/config.sample.php > config/config.php
$ nano config/config.php
With Micro migrations tools run, (*8)
$ php cli create
$ php cli restore
Nginx suggested directive, (*9)
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, (*10)
username: admin
password: admin
Bootie PHP 5 Framework REST Example Project
MIT
framework php mvc