Bantam.

Build Status Coverage Status Documentation Status

A lightweight and simple PHP framework.

The Philosophy

Bantam will always strive to be a lightweight, single file, implementation agnostic solution that help your write better, faster and more manageable PHP projects.

Download

Recommended: PHAR GZ build: PHAR GZ Build

Alternative: PHAR build: PHAR Build

Usage

It's dead easy to start using Bantam! At the top of your PHP file, simply add the following 2 lines:

require_once 'phar://path/to/bantam.phar.gz';
use \r3oath\bantam;

Then wherever you want to use a particular Bantam class:

bantam\Prelim::endsWith('This is awesome!', 'awesome!');