@@ -2,10 +2,10 @@ Koded Session
22=============
33
44[ ![ Minimum PHP Version] ( https://img.shields.io/badge/php-%3E%3D%207.1.4-8892BF.svg )] ( https://php.net/ )
5- [ ![ Build Status] ( https://scrutinizer-ci.com/g/kodedphp/session/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/kodedphp/session/build-status/master )
6- [ ![ Code Coverage] ( https://scrutinizer-ci.com/g/kodedphp/session/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/kodedphp/session/?branch=master )
7- [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/kodedphp/session/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/kodedphp/session/?branch=master )
85[ ![ Latest Stable Version] ( https://img.shields.io/packagist/v/koded/session.svg )] ( https://packagist.org/packages/koded/session )
6+ [ ![ Build Status] ( https://travis-ci.org/kodedphp/session.svg?branch=master )] ( https://travis-ci.org/kodedphp/session )
7+ [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Coverage/358e1c798c0c4af8bec25a0adb2671e2 )] ( https://www.codacy.com/app/kodeart/session )
8+ [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/358e1c798c0c4af8bec25a0adb2671e2 )] ( https://www.codacy.com/app/kodeart/session )
99[ ![ Software license] ( https://img.shields.io/badge/License-BSD%203--Clause-blue.svg )] ( LICENSE )
1010
1111
@@ -75,7 +75,7 @@ handler which is the PHP's default session mechanism.
7575However, the ` files ` handler might not be desirable if your application
7676runs in Docker, Kubernetes, distributed environment, etc.
7777
78- The best choice for PHP sessions is Redis in almost all situations.
78+ > The best choice for PHP sessions is Redis in almost all situations.
7979
8080WARNING: Memcached may drop the session data, because it's nature. Use it with caution!
8181
@@ -102,10 +102,10 @@ Redis handler
102102```
103103
104104A typical Redis settings:
105- - 1 server
106- - application + redis on the same machine
107- - Redis (127.0.0.1:6379)
108- - no auth (Redis is not available from outside)
105+ - 1 server
106+ - application + redis on the same machine
107+ - Redis (127.0.0.1:6379)
108+ - no auth (Redis is not available from outside)
109109
110110``` php
111111[
@@ -150,9 +150,9 @@ Memcached handler
150150```
151151
152152A typical Memcached settings:
153- - 1 server
154- - application + memcached on the same machine
155- - Memcached (127.0.0.1:11211)
153+ - 1 server
154+ - application + memcached on the same machine
155+ - Memcached (127.0.0.1:11211)
156156
157157``` php
158158[
0 commit comments