https://github.com/atakde/psession
PHP library for handling sessions
https://github.com/atakde/psession
php php-library php-session php-session-store php-sessions php8 session session-fixation session-handler session-management session-php
Last synced: 3 months ago
JSON representation
PHP library for handling sessions
- Host: GitHub
- URL: https://github.com/atakde/psession
- Owner: atakde
- Created: 2022-10-24T22:02:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-05T20:46:05.000Z (over 2 years ago)
- Last Synced: 2025-02-12T22:28:42.919Z (5 months ago)
- Topics: php, php-library, php-session, php-session-store, php-sessions, php8, session, session-fixation, session-handler, session-management, session-php
- Language: PHP
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# psession
PHP library for handling sessions
## Installation
Install via composer
```bash
composer require atakde/psession
```## Usage
```php
true,
]);$session->start();
$session->set('name', 'John');
echo $session->get('name');$session->destroy();
```
## Features
* Allowed dot notation both get & set
```php
Session::get('user.name');
Session::set('user.name', 'Testing');
```