tekton/foundation

This package is abandoned and no longer maintained. The author suggests using the tekton/framework package instead.

Tekton is a lightweight PHP framework, designed to integrate well with existing Laravel Illuminate components.

1.0.1 2017-04-12 10:59 UTC

This package is auto-updated.

Last update: 2019-02-20 19:10:52 UTC


README

Tekton is a lightweight PHP framework, designed to integrate well with existing Laravel Illuminate components. Tekton Foundation is the core that sets up the Service Container, the request and input handling, and the configuration loading. It also registers Illuminate/Events, Illuminate/Filesystem and Illuminate/Cache.

The reason it was created was to allow integrating the power and ease of use of Laravel when working in more limited environments. A good example is the Tekton/Wordpress project that does exactly that.

To get started, just require the project in your composer configuration and initialize the framework.

Sample Code

// Autoload classes
require_once __DIR__ . '/vendor/autoload.php';

\Tekton\Framework::instance()->init();