You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a PHP session handler that supports PSR-6 cache. It is a part of the PHP Cache organisation. Find more
5
+
documentation at [www.php-cache.com](http://www.php-cache.com).
6
+
7
+
8
+
### Install
9
+
10
+
```bash
11
+
composer require cache/session-handler
12
+
```
13
+
14
+
### Configure
15
+
16
+
```php
17
+
$pool = new ArrayCachePool();
18
+
$config = ['ttl'=>3600, 'prefix'=>'foobar'];
19
+
20
+
$sessionHandler = new Psr6SessionHandler($pool, $config);
21
+
```
22
+
23
+
### Contribute
24
+
25
+
Contributions are very welcome! Send us a pull request or report any issues you find on the [issue tracker](https://github.com/php-cache/issues/issues).
0 commit comments