-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Contributing | ||
|
||
This repository is a sub repository of [the JWT Framework](https://github.com/web-token/jwt-framework) project and is | ||
READ ONLY. | ||
Please do not submit any Pull Requests here. It will be automatically closed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
patreon: FlorentMorselli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Please do not submit any Pull Requests here. It will be automatically closed. | ||
|
||
You should submit it here: https://github.com/web-token/jwt-framework/pulls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014-2019 Spomky-Labs | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
AES GCM Key Wrapping Based Key Encryption Algorithms For JWT-Framework | ||
====================================================================== | ||
|
||
This repository is a sub repository of [the JWT Framework](https://github.com/web-token/jwt-framework) project and is | ||
READ ONLY. | ||
|
||
**Please do not submit any Pull Request here.** | ||
You should go to [the main repository](https://github.com/web-token/jwt-framework) instead. | ||
|
||
# Documentation | ||
|
||
The official documentation is available as https://web-token.spomky-labs.com/ | ||
|
||
# Licence | ||
|
||
This software is release under [MIT licence](LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "web-token/jwt-experimental", | ||
"description": "Experimental Components for the JWT Framework.", | ||
"type": "library", | ||
"license": "MIT", | ||
"keywords": [ | ||
"JWS", | ||
"JWT", | ||
"JWE", | ||
"JWA", | ||
"JWK", | ||
"JWKSet", | ||
"Jot", | ||
"Jose", | ||
"RFC7515", | ||
"RFC7516", | ||
"RFC7517", | ||
"RFC7518", | ||
"RFC7519", | ||
"RFC7520", | ||
"Bundle", | ||
"Symfony" | ||
], | ||
"homepage": "https://github.com/web-token", | ||
"authors": [ | ||
{ | ||
"name": "Florent Morselli", | ||
"homepage": "https://github.com/Spomky" | ||
}, | ||
{ | ||
"name": "All contributors", | ||
"homepage": "https://github.com/web-token/jwt-framework/contributors" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Jose\\Component\\Encryption\\Algorithm\\ContentEncryption\\": "ContentEncryption/", | ||
"Jose\\Component\\Encryption\\Algorithm\\KeyEncryption\\": "KeyEncryption/", | ||
"Jose\\Component\\Signature\\Algorithm\\": "Signature/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=8.1", | ||
"ext-openssl": "*", | ||
"web-token/jwt-encryption": "^3.2", | ||
"web-token/jwt-signature": "^3.2" | ||
} | ||
} |