Skip to content

Commit

Permalink
Future packages are as follows: the library, the bundle and the exper…
Browse files Browse the repository at this point in the history
…imental algorithms
  • Loading branch information
Spomky committed Dec 3, 2023
1 parent e14afce commit 6dc4099
Show file tree
Hide file tree
Showing 14 changed files with 161 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Component/.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.
2 changes: 2 additions & 0 deletions src/Component/.github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: Spomky
patreon: FlorentMorselli
3 changes: 3 additions & 0 deletions src/Component/.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
6 changes: 6 additions & 0 deletions src/Component/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
6 changes: 6 additions & 0 deletions src/Component/Checker/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
6 changes: 6 additions & 0 deletions src/Component/Console/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
6 changes: 6 additions & 0 deletions src/Component/Core/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
6 changes: 6 additions & 0 deletions src/Component/Encryption/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
6 changes: 6 additions & 0 deletions src/Component/KeyManagement/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
21 changes: 21 additions & 0 deletions src/Component/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.
6 changes: 6 additions & 0 deletions src/Component/NestedToken/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
16 changes: 16 additions & 0 deletions src/Component/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PHP JWT Signature Component
===========================

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).
6 changes: 6 additions & 0 deletions src/Component/Signature/.github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
daysUntilStale: 1
daysUntilClose: 1
staleLabel: wontfix
markComment: >
This repository is in read only mode. Please visit the main repository
closeComment: false
66 changes: 66 additions & 0 deletions src/Component/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"name": "web-token/jwt-library",
"description": "JWT Signature and Encryption library.",
"type": "library",
"license": "MIT",
"keywords": [
"JWS",
"JWT",
"JWE",
"JWA",
"JWK",
"JWKSet",
"Jot",
"Jose",
"RFC7515",
"RFC7516",
"RFC7517",
"RFC7518",
"RFC7519",
"RFC7520",
"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-library/contributors"
}
],
"autoload": {
"psr-4": {
"Jose\\Component\\": ""
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-mbstring": "*",
"brick/math": "^0.9|^0.10|^0.11|^0.12",
"paragonie/constant_time_encoding": "^2.4",
"psr/clock": "^1.0",
"spomky-labs/pki-framework": "^1.0",
"symfony/console": "^5.4|^6.0|^7.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0"
},
"suggest": {
"ext-sodium": "Required by the EdDSA signature algorithm",
"ext-openssl": "Required by the OpenSSL signature algorithm such as RSxxx, PSxxx or ESxxx",
"ext-gmp": "GMP or BCMath is highly recommended to improve the library performance",
"ext-bcmath": "GMP or BCMath is highly recommended to improve the library performance",
"spomky-labs/aes-key-wrap": "For AES Key Wrap algorithms",
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens.",
"web-token/jwt-experimental": "Experimental Algorithms",
"psr/http-client-implementation": "For JKU/X5U support",
"psr/http-factory-implementation": "For JKU/X5U support",
"symfony/http-client": "For JKU/X5U support"
},
"conflict": {
"spomky-labs/jose": "*"
}
}

0 comments on commit 6dc4099

Please sign in to comment.