PHPackages                             hichxm/session-manager-database - 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. [Database &amp; ORM](/categories/database)
4. /
5. hichxm/session-manager-database

ActiveLibrary[Database &amp; ORM](/categories/database)

hichxm/session-manager-database
===============================

Manage your session with database.

1.1(8y ago)118MITPHP

Since Mar 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/hichxm/session-manager-database)[ Packagist](https://packagist.org/packages/hichxm/session-manager-database)[ RSS](/packages/hichxm-session-manager-database/feed)WikiDiscussions master Synced 1mo ago

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

Session Manager Database
========================

[](#session-manager-database)

**Session Manager Database** will allow you to manage the sessions in the enclosure of your application with database implementation.

Exemple:
--------

[](#exemple)

```
$session_method = new DATABASE_SessionManager([
    "type" => "mysql", //Type of your database
    "name" => "sessionmanager", //Name of your database
    "server" => "127.0.0.1", //Host
    "port" => 3306, //Port
    "username" => "root", //Username
    "password" => "" //Password
]);
$session = new SessionManager($session_method);

//Start session.
$session->start();

//Set data or different method to set data.
$session->set($key = "id", $value = "1545348");
$session['id'] = 1545348;

//Get data or different method to get data.
$session->get($key = "id");
$session['id'];

//Unset data.
$session->unset($key = "id");
unset($session['id']);

//Stop session.
$session->stop();
```

Full doc
--------

[](#full-doc)

[Documentation.](DOC.md)

License (MIT)
-------------

[](#license-mit)

```
The MIT License (MIT)

Copyright (c) 2018

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

2990d ago

### Community

Maintainers

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

---

Top Contributors

[![hichxm](https://avatars.githubusercontent.com/u/12587585?v=4)](https://github.com/hichxm "hichxm (37 commits)")

---

Tags

databasemanagementmanagermedoosession

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hichxm-session-manager-database/health.svg)

```
[![Health](https://phpackages.com/badges/hichxm-session-manager-database/health.svg)](https://phpackages.com/packages/hichxm-session-manager-database)
```

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)

PHPackages © 2026

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