temant/session-manager

A comprehensive PHP utility class for secure and efficient managing sessions.

v2.0.5 2025-03-17 14:22 UTC

This package is not auto-updated.

Last update: 2025-04-15 12:02:20 UTC


README

Build Status Coverage Status License PHPStan

Temant Session Manager is a PHP package that simplifies session management in PHP applications. It provides an easy-to-use interface for starting and managing sessions, setting and getting session variables, and more.

Table of Contents

Installation

You can install this package via Composer: composer require temant/session-manager

Usage

To start using this package, follow these simple steps:

Require your composer autoloader:

require_once('path/to/vendor/autoload.php');

Create a SessionManager Instance:

use Temant\SessionManager\SessionManager;

Create a new session instance

$session = new SessionManager();

Start a new session:

$session->start();

Set a session variable:

$session->set('user_id', 123);

Get the value of a session variable:

$userID = $session->get('user_id');

Check if a session variable exists:

if ($session->has('user_id')) {
    // Do something
}

Remove a session variable:

$session->remove('user_id');

Regenerate the session ID:

$session->regenerate();

Destroy the session:

$session->destroy();