Skip to content

manothbi/simple-fw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Micro Web Framework Simfra =============================

WARNING: Simfra is in maintenance mode only.

Simfra is personal web framework a PHP micro-framework to develop websites based on Symfony components:

<?php

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

use Symfony\Component\Routing\RequestContext;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\RouteCollection;

$routes = new RouteCollection();
$requestContext = new RequestContext();
$requestContext->fromRequest(Request::createFromGlobals());

Core\Bootstrap::getInstance($requestContext);

Simfra works with PHP 8 or later.

Installation

The recommended way to install Silex is through Composer:

composer require manothbi/simple-fw

Alternatively, you can download the simfra.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 think there is an actual problem in Simfra, please open an issue if there isn't one already created.

License

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages