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

https://github.com/koolreport/stateless

Assist creating stateless application
https://github.com/koolreport/stateless

Last synced: about 2 months ago
JSON representation

Assist creating stateless application

Awesome Lists containing this project

README

          

# Stateless

This package will contain everything to construct a stateless PHP application.

## Sessions

The first of very first of making a stateless application is to make stateless session for PHP. There are few options:

1. Use encrypted cookie: Encryped sessions with JWT and store inside cookie.
2. Databases: Store the sessions into databases

## JWTSession

```
setSessionHandler();

//Your code is here

```