dev-master
9999999-devPHP RESTFull webservice
The Requires
- php >=5.4.0
- filp/whoops 1.*
The Development Requires
Wallogit.com
2017 © Pedro Peláez
PHP RESTFull webservice
Simple REST system to build small webservices without a huge framework or system for easy development., (*1)
Here is a brief explanation of how certain processes are set-up and called throughout the framework initialization., (*3)
Will handle the incoming request and will set up some globals for all paths. It will attempt to call the application., (*4)
Application::Run() The main method of the application gets called to intialize and run the system, (*5)
Check system paths, Setup Error handlers and init autoloader Self explanatory, (*6)
Initialize the config handler and load config files, (*7)
Call bootstrap and call all methods prefixed with '_' in standard order, (*8)
5a. _beforeRequest gets called Execute user code before the request will be fetched, (*9)
5b. _gatherRequest Fetch / Gather the HTTP Request send from browser or other client, (*10)
- Initialize URI class to handle the Request URI
5c _beforeRoute Execute user code before the uri will be analysed to fit an added route, (*11)
5d _analyzeRoute Matches the uri to a Route and saves the data, (*12)
PHP RESTFull webservice