PHPackages                             chipslays/session - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. chipslays/session

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

chipslays/session
=================

Easy Session manage

1.0.2(5y ago)018MITPHP

Since Dec 28Pushed 5y ago1 watchersCompare

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

READMEChangelog (3)DependenciesVersions (4)Used By (0)

PHP Session
===========

[](#php-session)

Easy way for manage Session on your website.

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

[](#installation)

```
composer require chipslays/session
```

Usage
-----

[](#usage)

```
use Session\Session;

require 'vendor/autoload.php';

Session::start([
    'name'            => 'PHPSSID_CUSTOM_NAME',
    'cookie_lifetime' => 86400, // seconds
]);
```

> See more available options [here](https://www.php.net/manual/ru/session.configuration.php).

```
Session::set('name', 'chipslays');
```

```
Session::get('name');

// second parameter is default value
Session::get('name', 'Unknown name');
```

```
Session::pull('name');
```

```
Session::has('name'); // true
Session::has('email'); // false
```

```
Session::remove('name');
```

```
Session::clear();
```

```
$sessionId = Session::id();
```

```
Session::regenerate();
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 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 ~24 days

Total

3

Last Release

1918d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19103498?v=4)[chipslays](/maintainers/chipslays)[@chipslays](https://github.com/chipslays)

---

Top Contributors

[![chipslays](https://avatars.githubusercontent.com/u/19103498?v=4)](https://github.com/chipslays "chipslays (8 commits)")

---

Tags

libraryphp-sessionsession

### Embed Badge

![Health badge](/badges/chipslays-session/health.svg)

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

PHPackages © 2026

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