All Projects → silexphp → Silex

silexphp / Silex

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

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Silex

Payumserver
Payment processing microservice. Written in Symfony4
Stars: ✭ 103 (-97.17%)
Mutual labels:  symfony, silex
Symfony
The Symfony PHP framework
Stars: ✭ 26,220 (+619.14%)
Mutual labels:  framework, symfony
Bolt
Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL or PostgreSQL.
Stars: ✭ 4,136 (+13.44%)
Mutual labels:  symfony, silex
Sylius
Open Source eCommerce Platform on Symfony
Stars: ✭ 6,598 (+80.97%)
Mutual labels:  framework, symfony
Nodefony Starter
Nodefony Starter Node.js Framework
Stars: ✭ 95 (-97.39%)
Mutual labels:  framework, symfony
Laravel Zero
A PHP framework for console artisans
Stars: ✭ 2,821 (-22.63%)
Mutual labels:  framework, symfony
Slugify
Converts a string to a slug. Includes integrations for Symfony, Silex, Laravel, Zend Framework 2, Twig, Nette and Latte.
Stars: ✭ 2,697 (-26.03%)
Mutual labels:  symfony, silex
Api Platform
Create REST and GraphQL APIs, scaffold Jamstack webapps, stream changes in real-time.
Stars: ✭ 7,144 (+95.94%)
Mutual labels:  framework, symfony
Frankie
A frankenstein framework - middleware and annotation based
Stars: ✭ 19 (-99.48%)
Mutual labels:  framework, symfony
Core
Zikula Core Framework
Stars: ✭ 213 (-94.16%)
Mutual labels:  framework, symfony
Symfony Cheat Sheets
Symfony Cheat Sheets
Stars: ✭ 242 (-93.36%)
Mutual labels:  framework, symfony
Hyperf
🚀 A coroutine framework that focuses on hyperspeed and flexibility. Building microservice or middleware with ease.
Stars: ✭ 4,206 (+15.36%)
Mutual labels:  framework
Atata
C#/.NET test automation framework for web
Stars: ✭ 362 (-90.07%)
Mutual labels:  framework
Material Foundation
Material Design version of Foudation for Sites by Zurb
Stars: ✭ 361 (-90.1%)
Mutual labels:  framework
Codestar Framework Old
This project has moved to https://github.com/Codestar/codestar-framework
Stars: ✭ 361 (-90.1%)
Mutual labels:  framework
Graphqlite
Use PHP Annotations to declare your GraphQL API
Stars: ✭ 370 (-89.85%)
Mutual labels:  symfony
Lulumi Browser
Lulumi-browser is a lightweight browser coded with Vue.js 2 and Electron.
Stars: ✭ 367 (-89.93%)
Mutual labels:  framework
Awesome Symfony
A collection of useful Symfony snippets.
Stars: ✭ 360 (-90.13%)
Mutual labels:  symfony
Lexikformfilterbundle
This Symfony bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.
Stars: ✭ 360 (-90.13%)
Mutual labels:  symfony
Phpstan Symfony
Symfony extension for PHPStan
Stars: ✭ 360 (-90.13%)
Mutual labels:  symfony

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].