thetempusproject/tempusprojectcore

Tempus project core is intended as the core code used by The Tempus Project: a rapid prototyping framework. This library utilizes the MVC architecture in addition to a custom templating engine designed to make building web applications simple.

2.1.0 2018-03-19 00:25 UTC

This package is not auto-updated.

Last update: 2024-05-12 01:44:48 UTC


README

Framework Core Library

Developer(s): Joey Kimsey

TempusProjectCore is the core functionality used by The Tempus Project a rapid prototyping framework. This Library can be utilized outside of the TempusProject, but the functionality has not been tested well as a stand alone library.

This library utilizes the MVC architecture in addition to a custom templating engine designed to make building web applications fast and simple.

Notice: This Library is provided as is, please use at your own risk.

Installation and Use

The easiest way to use TPC in your application is to install and initialize it via composer.

"require": {

    "TheTempusProject/TempusProjectCore": "*",

},

"autoload": {

    "psr-4": {

        "TempusProjectCore\": "vendor/TheTempusProject/TempusProjectCore"

    }

}

If you prefer to handle auto-loading via other means, you can simply clone this repository wherever you need it. Please note, you will need to install and load the TempusDebugger library in order to utilize the debug to console options.