chillerlan / php-session
A simple encrypted session handler. PHP 7+
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/chillerlan/php-session
Requires
- php: ^7.2.0
- chillerlan/php-log: ^1.0
- chillerlan/php-traits: ^1.1
- psr/log: ^1.0
Requires (Dev)
- chillerlan/php-cache: ^1.0
- chillerlan/php-database: ^2.0.1
- chillerlan/php-filereader: ^1.0
- phpunit/phpunit: ^6.5
README
A SessionHandlerInterface implementation for PHP 7.2+
Documentation
Requirements
- PHP 7.2+
- the Sodium extension for session encryption
Installation
requires composer
composer.json (note: replace dev-master with a version boundary)
{
	"require": {
		"php": ">=7.0.3",
		"chillerlan/php-session": "dev-master"
	}
}
Manual installation
Download the desired version of the package from master or release and extract the contents to your project folder. After that:
- run composer installto install the required dependencies and generate/vendor/autoload.php.
- if you use a custom autoloader, point the namespace chillerlan\Sessionto the foldersrcof the package
Profit!
Usage
- @todo