Download the PHP package rudrax/boot without Composer
On this page you can find all versions of the php package rudrax/boot. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package boot
Short Description Suporting library for Rudrax
License MIT
Homepage http://api.spamjs.org
Informations about the package boot
boot
Simple and Light weight MVC framework in PHP, it serves all stable functionalties like routing (native), caching (phpFastCache), database (Redbeans & PDO), templating (Smarty), authentication (Basic,SSO & Custom), Session/Roles etc.
Setup
Prerequisites
- XAMP : instructions
- PHP/Copmoser : instructions
Setup New RudraX Project
If you are starting a fresh project simply follow these steps
- Go to directoy where you want to create your project lests say "/Users/Lucas/Projects/" and run this command
Or you can Manually Setup RudraX project or install RudraX in your existing project
Install in existing project
Folder Structure
If you have used create-project command then this directory structure will be automatically created for you. Otherwise create it manually. and make sure build folder has correct permisson 0777
index File [index.php]
This file also gets created automatically if you have used create-project. Otherwise create it and copy the code in file, also copy .htaccess in you project.
Documentaion
Now we are done with setup, lets start with how to write code in our project.
Sample Controller [app/controller/MyController.php]
Controller Annotation Options
All are method level annotations
- @RequestMapping - URL info
- url - url pattern to match
- method - request method [GET|POST|PUT|DELETE] - used only if mentioned
- type - response type [template|json|data] - data
- auth - if url acccess requires basic auth [TRUE|FALSE] - FALSE
- cache - if response is cacheable by server [TRUE|FALSE] - FALSE
- guestcache - cacheable only if guest user (user not valid) [TRUE|FALSE] - FALSE
- @RequestParams - if query params to be fetched and used in controller. [TRUE|FALSE] - FALSE
- @Role - [user defined values] - used only if mentioned, users with matching $user->{role} will have access to api.
Model Annotation Options
Class Level Annotations
- @Model - [sessionUser] -
- sessionUser - if used then that model will be used as default Session user, Class must extend app\model\AbstractUser
Tweakings
To build project/clear cache/rebuild annotations - Hit this URL from Browser
All versions of boot with dependencies
rudrax/annotations Version 1.*
rudrax/smarty Version 3.*
rudrax/phpfastcache Version 2.*