Skip to content

A simple PHP micro-framwork aimed at simplicity and developer experience

Notifications You must be signed in to change notification settings

beganovich/framework

 
 

Repository files navigation

PHP-Fox Framework

Latest Version PHP Version tests

This is the repository for the PHP-Fox framework, a simple and lightweight PHP micro-framework designed for APIs.

Installation

You should use one of the framework templates instead of installing this package, however if you want to create your own template - please follow these instructions:

Desired API

The code below depicts how we would like our framework API to work, providing a simple and clean developer experience

<?php

declare(strict_types=1);

use PHPFox\Application;

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

$app = Application::boot(
    basePath: __DIR__ . '/../', // root directory of project
);

// Routes are preloaded
// Config is preloaded
// Container definitions are preloaded

$app->run();

About

A simple PHP micro-framwork aimed at simplicity and developer experience

Resources

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%