PHPackages                             dioscouri/f3-lib - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. dioscouri/f3-lib

ActiveLibrary[Framework](/categories/framework)

dioscouri/f3-lib
================

Library for the F3-framework

v0.9.0(10y ago)91.8k7[15 issues](https://github.com/dioscouri/f3-lib/issues)[1 PRs](https://github.com/dioscouri/f3-lib/pulls)18GPLPHPPHP &gt;=5.4.0

Since Feb 13Pushed 8y ago6 watchersCompare

[ Source](https://github.com/dioscouri/f3-lib)[ Packagist](https://packagist.org/packages/dioscouri/f3-lib)[ Docs](https://github.com/dioscouri/f3-lib)[ RSS](/packages/dioscouri-f3-lib/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)DependenciesVersions (7)Used By (18)

f3-lib
======

[](#f3-lib)

A library for the F3 framework [a link](https://github.com/bcosca/fatfree), The library is designed to use fatfree as a strong base, and add on top it the files and functions to quickly create applications. There is a strong community of apps, for solving common problems.

### The Library is standalone and be quickly added to your repo using composer

[](#the-library-is-standalone-and-be-quickly-added-to-your-repo-using-composer)

```
Add this to your project's composer.json file:

{
    "require": {
        "dioscouri/f3-lib": "dev-master"
    }
}

```

Then add the following two lines to your index.php file, immediately before $app-&gt;run();

```
// bootstap each mini-app
\Dsc\Apps::instance()->bootstrap();

// trigger the preflight event
\Dsc\System::instance()->preflight();

```

### Example index.php file

[](#example-indexphp-file)

```
