Skip to content
/ Silex Public
forked from silexphp/Silex

[DEPRECATED -- Use Symfony instead] The PHP micro-framework based on the Symfony Components

License

Notifications You must be signed in to change notification settings

xsanisty/Silex

This branch is 2 commits ahead of silexphp/Silex:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f2dd9a5 · Apr 28, 2020
Apr 20, 2018
Jun 2, 2018
Apr 4, 2018
Oct 12, 2012
Feb 25, 2018
Feb 26, 2018
Jan 2, 2017
Apr 20, 2018
Apr 28, 2020
Apr 11, 2015

Repository files navigation

Silex, a simple Web Framework

WARNING: Silex is in maintenance mode only. Ends of life is set to June 2018. Read more on Symfony's blog.

Silex is a PHP micro-framework to develop websites based on Symfony components:

<?php

require_once __DIR__.'/../vendor/autoload.php';

$app = new Silex\Application();

$app->get('/hello/{name}', function ($name) use ($app) {
  return 'Hello '.$app->escape($name);
});

$app->run();

Silex works with PHP 7.1.3 or later.

Installation

The recommended way to install Silex is through Composer:

composer require silex/silex "~2.0"

Alternatively, you can download the silex.zip file and extract it.

More Information

Read the documentation for more information and changelog for upgrading information.

Tests

To run the test suite, you need Composer and PHPUnit:

composer install
phpunit

Support

If you have a configuration problem use the silex tag on StackOverflow to ask a question.

If you think there is an actual problem in Silex, please open an issue if there isn't one already created.

License

Silex is licensed under the MIT license.

About

[DEPRECATED -- Use Symfony instead] The PHP micro-framework based on the Symfony Components

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%