Initial commit

This commit is contained in:
2021-02-11 13:22:51 +01:00
commit 3899d191a4
21 changed files with 712 additions and 0 deletions

17
composer.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "noccylabs/simple-jwt",
"description": "Simple library for generating and verifying JWT tokens",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "cvagnetoft@gmail.com"
}
],
"autoload": {
"psr-4": {
"NoccyLabs\\SimpleJwt\\": "src/"
}
}
}