A simple MVC PHP Framework, no fuss

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

1.0.2_Beta 2019-07-22 18:53 UTC

This package is auto-updated.

Last update: 2025-05-26 00:24:29 UTC


README

A very simple PHP MVC framework designed to kick start your projects, without learning anything.

Some basic features include:

  • MVC, models and views are optional of course

  • Some simple libraries included for DB access, media uploads, logging, data tables and routes

  • Full composer support

  • Routes are as simple as www.example.com/controller/method/

  • That's it, everything else is up to you.

  • Full Documentation

  • DB Library is from MysqliDb

Quick Start

  1. Download the latest release of PSF, and extract the archive or install using composer composer create-project "webtronic/psf:dev-master" my-project-name
  2. All files should be behind the public facing section of your site except the contents of the public folder. This can be renamed to anything you like such as "httpdocs", "wwwroot", "public_html"
  3. Edit the .htaccess file in the public folder to correspond to your routes / server
  4. Open Config.php and edit your settings
  5. You should be good to go now.
  6. See Full Documentation for all configuration and options