LaravelPackages.net
Acme Inc.
Toggle sidebar
arrilot/sessions

Use Laravel session Api to work with plain old PHP sessions in any project

697
5
1.0.3
About arrilot/sessions

arrilot/sessions is a Laravel package for use laravel session api to work with plain old php sessions in any project. It currently has 5 GitHub stars and 697 downloads on Packagist (latest version 1.0.3). Install it with composer require arrilot/sessions. Discover more Laravel packages by arrilot or browse all Laravel packages to compare alternatives.

Last updated

Latest Stable Version Total Downloads Build Status Scrutinizer Quality Score

Laravel-like framework agnostic session package

Use Laravel session Api to work with plain-old php sessions in any project

Installation

  1. composer require arrilot/sessions

  2. Register a service provider anywhere in your bootstrap code.

Arrilot\Sessions\SessionProvider::register();

Usage

Arrilot\Sessions\Session is the main class provided by the package. You can treat this class just like the Laravel Session facade and call literally any method listed here + Session::now() from 5.1.

Example:

use Arrilot\Sessions\Session;

Session::flash('message', 'Email was sent');

Note that the package does not actually require laravel session component. It provides Laravel API to work with built-in php sessions ($_SESSION) instead.

Star History Chart