PHPackages                             prob/framework - 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. prob/framework

ActiveProject[Framework](/categories/framework)

prob/framework
==============

A simple PHP framework

391[23 issues](https://github.com/jongpak/prob-framework/issues)PHP

Since Jan 9Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jongpak/prob-framework)[ Packagist](https://packagist.org/packages/prob/framework)[ RSS](/packages/prob-framework/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Prob/Framework
==============

[](#probframework)

*A simple PHP framework*

[![Build Status](https://camo.githubusercontent.com/cdfb37aad68c39f8106a0714e37b6bf3ae78def162e8c093f804cc8dee3157bc/68747470733a2f2f7472617669732d63692e6f72672f6a6f6e6770616b2f70726f622d6672616d65776f726b2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/jongpak/prob-framework)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/2b7f733bdf30e71344dd41c048d8ab1b6886d6570695a0c73c5c6b86ac22f766/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6a6f6e6770616b2f70726f622d6672616d65776f726b2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/jongpak/prob-framework/?branch=master)[![codecov](https://camo.githubusercontent.com/740929d883bc0214519dca59c275ea84eaea0c2ae5711971856fd396ee1299f3/68747470733a2f2f636f6465636f762e696f2f67682f6a6f6e6770616b2f70726f622d6672616d65776f726b2f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/jongpak/prob-framework)

Installation
------------

[](#installation)

### Copy sample configuration

[](#copy-sample-configuration)

```
$ cp .htaccess.example .htaccess
$ cp config/site.php.example config/site.php
$ cp config/db.php.example config/db.php
$ cp app/Auth/config/config.php.example app/Auth/config/config.php
$ cp app/Auth/config/accounts.php.example app/Auth/config/accounts.php

```

### Setting configuration for your environment

[](#setting-configuration-for-your-environment)

.htaccess

```
RewriteBase ** YOUR_WEB_SITE_URL_PATH (ex: / or /prob) **

```

config/site.php

```
'url' => '/',
'publicPath' => '/public/',
```

config/db.php

```
'host'      => 'localhost',
'port'      => 3306,
'user'      => 'username',
'password'  => 'password',
'dbname'    => 'dbname',
'charset'   => 'utf8'
```

app/Auth/config/config.php

```
'defaultAllow' => true,
'defaultAccountManager' => 'FileBaseAccountManager',
'defaultLoginManager' => 'SessionLoginManager',
'defaultPermissionManager' => 'FileBasePermissionManager',
// ...
```

app/Auth/config/accounts.php

```
return [
    // ...

    'test' => [
        'password' => 'test',
        'role' => [ 'Member' ]
    ],

    //*** Add YOUR ACCONUTS
];
```

### Making directories

[](#making-directories)

```
$ mkdir data

```

### Dependency package update (use [Composer](https://getcomposer.org/))

[](#dependency-package-update-use-composer)

```
$ composer update

```

### Creating table schema

[](#creating-table-schema)

```
$ php ./vendor/doctrine/orm/bin/doctrine.php orm:schema-tool:create

```

Starting a web application (using PHP built-in server)
------------------------------------------------------

[](#starting-a-web-application-using-php-built-in-server)

```
$ php -S 127.0.0.1:8080 -t public/

```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 99.7% 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.

### Community

---

Top Contributors

[![jongpak](https://avatars.githubusercontent.com/u/15353893?v=4)](https://github.com/jongpak "jongpak (363 commits)")[![guluem](https://avatars.githubusercontent.com/u/214325389?v=4)](https://github.com/guluem "guluem (1 commits)")

### Embed Badge

![Health badge](/badges/prob-framework/health.svg)

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/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.7M259](/packages/laravel-dusk)[laravel/prompts

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

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

A simple API extension for DateTime.

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

PHPackages © 2026

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