PHPackages                             smartedutech/littelframeworkapp - 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. smartedutech/littelframeworkapp

ActiveProject[Framework](/categories/framework)

smartedutech/littelframeworkapp
===============================

skeleton for small mvc application

0.2(9mo ago)0202MITJavaScript

Since Jun 17Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/SmartEduTech/littelframeworkapp)[ Packagist](https://packagist.org/packages/smartedutech/littelframeworkapp)[ RSS](/packages/smartedutech-littelframeworkapp/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

litelleframework-mvc-skeleton
=============================

[](#litelleframework-mvc-skeleton)

Introduction
------------

[](#introduction)

\--Version This is a application skeleton application using the litelleframwork MVC layer and module systems. This application is meant to be used as a starting place for those looking to get their feet wet with litelleframwork MVC.

Installation using Composer
---------------------------

[](#installation-using-composer)

The easiest way to create a new litelleframwork MVC project is to use [Composer](https://getcomposer.org/). If you don't have it already installed, then please install as per the [documentation](https://getcomposer.org/doc/00-intro.md).

To create your new littelframework MVC project:

```
$ composer create-project -sdev smartedutech/littelframeworkapp path/to/install
```

Once installed, you can test it out immediately using PHP's built-in web server:

```
$ cd path/to/install
$ php -S 0.0.0.0:8080 -t public
# OR use the composer alias:
$ composer run --timeout 0 serve
```

This will start the cli-server on port 8080, and bind it to all network interfaces. You can then visit the site at

- which will bring up litelleframwork MVC Skeleton welcome page.

**Note:** The built-in CLI server is *for development only*.

Development mode
----------------

[](#development-mode)

You cas use a simple generator included in this project. the generator is a package named smartedutech/litelle-framework-generator

```
 $ composer require smartedutech/litelle-framework-generator
```

the file used to generate your CRUD is '/public/generator.php'

Development mode configure generator
------------------------------------

[](#development-mode-configure-generator)

to configure the crud you must implement this file 'vendor\\smartedutech\\litelle-framework-generator\\src\\Configgen\\module.php' the file content the name of package and the name of your controllers and actions with the database tables

```
$_APP_CONF=array(
    "APPNAME"=>"e-lab-reservation"
);

```

```
 "modules"=>array(
        "admin"=>array(
            "name"=>"admin"
            ,"Controller"=>array(
            )
        )
 )

```

''controllers configure "roles"=&gt;array( "name"=&gt;"roles", "actions"=&gt;array() )

```

```action configure
"{Controller}"=>array(
       "name"=>"{Controller}",
       "actions"=>array(
           "edit{Table}"=>array(
               "Type"=>"simple"//"AJAX"
               ,'Role'=>"edit"//lister | consulter | gestion | delete | save
               ,"view"=>array(
                 "view"=>true
                 ,"layout"=>false
                 ,"pages"=>array(
                       "edit"=>"edit{Table}"
                       ,"lister"=>"lister{Table}"
                       //,"id"=>"id{Table}"
                     )
               )
               ,"activity"=>"edit"
               ,"form"=>"form{Table}"
               ,"model"=>array(
                   "table"=>"{Table}"
               )
           ),
       )

```

Running Unit Tests
------------------

[](#running-unit-tests)

Once testing support is present, you can run the tests using:

```
$ ./vendor/bin/phpunit
```

Web server setup
----------------

[](#web-server-setup)

### Apache setup

[](#apache-setup)

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:

```

    ServerName litelleframeworkapp.localhost
    DocumentRoot /path/to/litelleframeworkapp/public

        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all

        Require all granted

```

### Nginx setup

[](#nginx-setup)

To setup nginx, open your `/path/to/nginx/nginx.conf` and add an [include directive](http://nginx.org/en/docs/ngx_core_module.html#include) below into `http` block if it does not already exist:

```
http {
    # ...
    include sites-enabled/*.conf;
}
```

it should look something like below:

```
server {
    listen       80;
    server_name  litelleframeworkapp.localhost;
    root         /path/to/litelleframeworkapp/public;

    location / {
        index index.php;
        try_files $uri $uri/ @php;
    }

    location @php {
        # Pass the PHP requests to FastCGI server (php-fpm) on 127.0.0.1:9000
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME /path/to/litelleframeworkapp/public/index.php;
        include fastcgi_params;
    }
}

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance61

Regular maintenance activity

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 87.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~781 days

Total

2

Last Release

275d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bd66ae337da07faf3567cc02556dee0f9b50e9d933c715bddaa1180d870e9a4b?d=identicon)[SmartEduTech](/maintainers/SmartEduTech)

---

Top Contributors

[![limostr](https://avatars.githubusercontent.com/u/25341133?v=4)](https://github.com/limostr "limostr (7 commits)")[![SmartEduTech](https://avatars.githubusercontent.com/u/94455020?v=4)](https://github.com/SmartEduTech "SmartEduTech (1 commits)")

### Embed Badge

![Health badge](/badges/smartedutech-littelframeworkapp/health.svg)

```
[![Health](https://phpackages.com/badges/smartedutech-littelframeworkapp/health.svg)](https://phpackages.com/packages/smartedutech-littelframeworkapp)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M190](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M255](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M591](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M120](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
