Silex (web framework)
   HOME

TheInfoList



OR:

Silex is a micro web framework written in PHP and based on Symfony, Twig (template engine) and Doctrine (database abstraction). It is
MIT License The MIT License is a permissive free software license originating at the Massachusetts Institute of Technology (MIT) in the late 1980s. As a permissive license, it puts only very limited restriction on reuse and has, therefore, high license comp ...
d. The general purpose of Silex is to be as lightweight as you need it to be, as it is made for it to be as easy as possible to add features and extend the Silex base. Silex can be used for the creation of small web applications (e.g. REST APIs) as this is the main case for micro frameworks, however Silex can be extended into a full stack MVC framework. Silex comes in two available versions; 'fat' and 'slim'. The difference between these being that the fat version is fully featured and includes database abstraction, a template engine and various Symfony components. Whereas the slim version just comes with a basic routing engine. Silex became end-of-life in June 2018 with people being encouraged to use Symfony instead.


Features

The base feature set is a URL routing system, built-in
Web Security Internet security is a branch of computer security. It encompasses the Internet, browser security, web site security, and network security as it applies to other applications or operating systems as a whole. Its objective is to establish rules ...
, Sessions and
Cookies A cookie is a baked or cooked snack or dessert that is typically small, flat and sweet. It usually contains flour, sugar, egg, and some type of oil, fat, or butter. It may include other ingredients such as raisins, oats, chocolate chi ...
abstraction. The extended version of Silex features integration of Twig, Doctrine, a Translation service for translating your application into different languages, a logging mechanism using the Monolog library to log requests and errors, services for form validation and generation, and more.


History

Silex was originally created by Fabien Potencier, the creator of the Symfony framework, and Igor Wiedler. It was first released as a 'web framework proof-of-concept'. Silex was at its time one of the best known micro frameworks for PHP and was regularly placed among the fastest in benchmarks for micro framework comparisons.


Example

The following code shows a simple web application that prints "
Hello World ''Hello'' is a salutation or greeting in the English language. It is first attested in writing from 1826. Early uses ''Hello'', with that spelling, was used in publications in the U.S. as early as the 18 October 1826 edition of the '' Norwich ...
!": $app = new Silex\Application(); $app->get('/', function() use($app) ); $app->run();


See also

* Symfony * Comparison of web frameworks


References


External links

* {{Web frameworks Free software programmed in PHP PHP frameworks Software using the MIT license Web frameworks