| Recommend this page to a friend! | 
| Classes of Fernando Val | Springy | documentation/en/README.md | Download | 
| 
 | |||||||||||||||||||||
|  Download SpringyA 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  The  All other configuration stays in files inside the folder defined by  Configuration filesThe  All *.php must returns an array with key pair. You can sets configuration for specific hosts by defining a file named
 The Springy Framework uses some pre-defined configuration files like db, mail, soap, system, template and uri. Any other configuration file can be used by your application. ModelsModel is part of MVC architecture of the framework. They are objects representing business data, rules and logic. 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. 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. 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. |