Recommend this page to a friend! |
Classes of Fernando Val | Springy | documentation/en/README.md | Download |
|
DownloadSpringyA micro framework for smart PHP developers. Table of content
AboutThe Springy is designed to be a framework for developing web applications in PHP MVC architecture, lightweight, easy to learn, feature rich, adaptable and quick execution. Instalation GuideWe will consider that you have already configured web server to answer the request at the address of your project and explain just how to take the first steps to create the first page. If you do not use the Apache HTTP Server or your web server does not understand the .htaccess configuration file, like NGINX Plus, check what settings are required to reproduce the same effect. Prerequisites
First steps
ConfigurationThe script sysconf.php is the general system configuration. Some configuration like application name and version, environment, application tree, charset and timezone. Reed this for mor details. All configuration stays in files inside the folder defined by Configuration filesThe All *.conf.php must define an array variable named You can overwrite key pairs configuration for specific hosts by defining the array The Springy Framework uses some pre-defined configuration files like db, mail, soap, system, template and uri. All other configuration files are used only by your application. ModelsModel is part of MVC architecture of the framework. They are objects representing business data, rules and logic. Read more ViewsViews are part of MVC architecture of the framework. They are code responsible for presenting data to end users, usually files containing HTML code and special codes parsed by a template engine. Read mode ControllersController is part of MVC architecture of the framework. All actions is you application is started by a controller class. They are responsible for processing requests and generating responses. Read more LibraryThe framework library is a set of classes used by itself and what the application can use too. You can see it's documentation here. |