Skip to content

Commit

Permalink
Preparing package simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Aug 31, 2023
1 parent 2458b17 commit c674a98
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Experimental/.github/CONTRIBUTING.md
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.
1 change: 1 addition & 0 deletions src/Experimental/.github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
patreon: FlorentMorselli
3 changes: 3 additions & 0 deletions src/Experimental/.github/PULL_REQUEST_TEMPLATE.md
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
21 changes: 21 additions & 0 deletions src/Experimental/LICENSE
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.
16 changes: 16 additions & 0 deletions src/Experimental/README.md
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).
48 changes: 48 additions & 0 deletions src/Experimental/composer.json
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"
}
}

0 comments on commit c674a98

Please sign in to comment.