An open API service indexing awesome lists of open source software.

https://github.com/joomla-framework/session

Joomla Framework Session Package
https://github.com/joomla-framework/session

joomla joomla-framework php session

Last synced: 5 months ago
JSON representation

Joomla Framework Session Package

Awesome Lists containing this project

README

          

# The Session Package [![Build Status](https://github.com/joomla-framework/session/actions/workflows/ci.yml/badge.svg?branch=3.x-dev)](https://github.com/joomla-framework/session)

[![Latest Stable Version](https://poser.pugx.org/joomla/session/v/stable)](https://packagist.org/packages/joomla/session)
[![Total Downloads](https://poser.pugx.org/joomla/session/downloads)](https://packagist.org/packages/joomla/session)
[![Latest Unstable Version](https://poser.pugx.org/joomla/session/v/unstable)](https://packagist.org/packages/joomla/session)
[![License](https://poser.pugx.org/joomla/session/license)](https://packagist.org/packages/joomla/session)

The Session package provides an interface for managing sessions within an application.

## Requirements

* PHP 8.1 or later

## Installation via Composer

Add `"joomla/session": "~3.0"` to the require block in your composer.json and then run `composer install`.

```json
{
"require": {
"joomla/session": "~3.0"
}
}
```

Alternatively, you can simply run the following from the command line:

```sh
composer require joomla/session "~3.0"
```

If you want to include the test sources, use

```sh
composer require --prefer-source joomla/session "~3.0"
```