manothbi / simple-fw
A simple micro Framework
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/manothbi/simple-fw
Requires
- php: ^8.0.2
- doctrine/annotations: ^1.13
- symfony/config: ^6.0
- symfony/console: ^6.0
- symfony/http-foundation: ^6.0
- symfony/routing: ^6.0
- symfony/yaml: ^6.0
This package is auto-updated.
Last update: 2025-09-29 02:30:13 UTC
README
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.