Light php framework

Maintainers

Package info

github.com/shklyarik/psa-core

pkg:composer/shklyarik/base

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-03-22 13:01 UTC

This package is auto-updated.

Last update: 2026-03-22 13:02:00 UTC


README

This is a very lightweight PHP framework aimed at maximum performance and resource optimization.

<?php

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

new Psa\Core\Web\App(
    di: new Psa\Core\Common\Container(require_once __DIR__ . '/../src/Config/web.php'),
    router: new Psa\Core\Web\Router(require_once __DIR__ . '/../src/Config/routes.php')
)->run();