Download the PHP package markei/silexwebsiteframework without Composer
On this page you can find all versions of the php package markei/silexwebsiteframework. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download markei/silexwebsiteframework
More information about markei/silexwebsiteframework
Files in markei/silexwebsiteframework
Download markei/silexwebsiteframework
More information about markei/silexwebsiteframework
Files in markei/silexwebsiteframework
Vendor markei
Package silexwebsiteframework
Short Description Quickstart building sites with Silex, Twig, Symfony Forms, Imagine and Swiftmailer
License MIT
Package silexwebsiteframework
Short Description Quickstart building sites with Silex, Twig, Symfony Forms, Imagine and Swiftmailer
License MIT
Please rate this library. Is it a good library?
Informations about the package silexwebsiteframework
SilexWebsiteFramework
The Markei.nl SilexWebsiteFramework configures all the standard vendors you need to build a site with Silex: Twig, Symfony Forms, Imagine and Swiftmailer
Quick start
Create your own Application.php and start registering your routes.
<?php
namespace Acme\AcmeWebsite;
use Markei\SilexWebsiteFramework\Application as BaseApplication;
use Symfony\Component\HttpFoundation\Request;
class Application extends BaseApplication
{
protected function getRequiredConfigurationFields()
{
return array_merge(parent::getRequiredConfigurationFields(), []);
}
protected function registerRoutes()
{
$this->get('/first-page', function (Application $app, Request $request) { return $app['controllers.page']->showPageAction($request, 'first-page'); });
$this->get('/second-page', function (Application $app, Request $request) { return $app['controllers.page']->showPageAction($request, 'second-page'); });
parent::registerRoutes();
}
protected function registerControllers()
{
parent::registerControllers();
}
}
All versions of silexwebsiteframework with dependencies
PHP Build Version
Package Version
Requires
twig/twig Version
~2.0
silex/silex Version ~2.0
swiftmailer/swiftmailer Version ~5.3
imagine/imagine Version ^0.6.3
symfony/form Version ^3.2
symfony/validator Version ^3.2
symfony/translation Version ^3.2
symfony/twig-bridge Version ^3.2
symfony/security-csrf Version ^3.2
symfony/config Version ^3.2
silex/silex Version ~2.0
swiftmailer/swiftmailer Version ~5.3
imagine/imagine Version ^0.6.3
symfony/form Version ^3.2
symfony/validator Version ^3.2
symfony/translation Version ^3.2
symfony/twig-bridge Version ^3.2
symfony/security-csrf Version ^3.2
symfony/config Version ^3.2
The package markei/silexwebsiteframework contains the following files
Loading the files please wait ....