Skip to content

oladoyinbov/filesharing

Repository files navigation

Fastvolt Framework

Fastvolt is a simple, fast and scalable php web framework used for building web applications. this framework is best suited for entry-level php developers because of it simplicity.

Installation

composer require fastvolt/framework

Requirements:

  • PHP 8.1
  • Mysql (only if needed)

Quickstart

🖥️ Starting a server

php -S localhost:8000 -t FastVolt/

NOTE: FastVolt should be the directory name or folder name where foster framework was installed into.


🎇 Simple Hello World

Creating a simple app that returns a response text "hello world" in (file: routes/main.route.php).

use FastVolt\Router\Route;

Route::get('/', fn() => "hello world");

On your browser, input search address localhost:8000/, if you installed it correctly, then you should see this output:

Hello World

Features

PHP has alot of frameworks you choose from, but what exactly made Foster framework more better than them?

  • Simple Installation
  • Low Learning Curve
  • Built-in Simple Http Router
  • Middleware
  • Max Security
  • MVC Architecture
  • Less Development Time
  • Developer Tool (Automatic Code Generation)
  • Templating Engine (Smarty)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published