From d1136b7151775ab89ca0c3c7766b2137336fe19a Mon Sep 17 00:00:00 2001 From: Spomky Date: Sun, 27 Feb 2022 10:13:59 +0100 Subject: [PATCH] Explicit php version for all components --- src/Bundle/JoseFramework/composer.json | 1 + src/Component/Checker/composer.json | 1 + src/Component/Console/composer.json | 1 + src/Component/Encryption/composer.json | 1 + src/Component/KeyManagement/composer.json | 1 + src/Component/NestedToken/composer.json | 1 + src/Component/Signature/composer.json | 1 + src/Ecc/composer.json | 1 + src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json | 1 + src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json | 1 + src/EncryptionAlgorithm/Experimental/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json | 1 + src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json | 1 + src/SignatureAlgorithm/ECDSA/composer.json | 1 + src/SignatureAlgorithm/EdDSA/composer.json | 1 + src/SignatureAlgorithm/Experimental/composer.json | 1 + src/SignatureAlgorithm/HMAC/composer.json | 1 + src/SignatureAlgorithm/None/composer.json | 1 + src/SignatureAlgorithm/RSA/composer.json | 1 + 23 files changed, 23 insertions(+) diff --git a/src/Bundle/JoseFramework/composer.json b/src/Bundle/JoseFramework/composer.json index 07e0da27..e52d40ce 100644 --- a/src/Bundle/JoseFramework/composer.json +++ b/src/Bundle/JoseFramework/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "psr/event-dispatcher": "^1.0", "symfony/config": "^5.4|^6.0", "symfony/dependency-injection": "^5.4|^6.0", diff --git a/src/Component/Checker/composer.json b/src/Component/Checker/composer.json index 4b705ce6..70797cba 100644 --- a/src/Component/Checker/composer.json +++ b/src/Component/Checker/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-core": "^3.0" } } diff --git a/src/Component/Console/composer.json b/src/Component/Console/composer.json index dba0c8d4..43c948e1 100644 --- a/src/Component/Console/composer.json +++ b/src/Component/Console/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "symfony/console": "^5.4|^6.0", "web-token/jwt-key-mgmt": "^3.0" } diff --git a/src/Component/Encryption/composer.json b/src/Component/Encryption/composer.json index b8afca30..60e00472 100644 --- a/src/Component/Encryption/composer.json +++ b/src/Component/Encryption/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-core": "^3.0" }, "suggest": { diff --git a/src/Component/KeyManagement/composer.json b/src/Component/KeyManagement/composer.json index 3e874857..22c7d7e6 100644 --- a/src/Component/KeyManagement/composer.json +++ b/src/Component/KeyManagement/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "psr/http-factory": "^1.0", "psr/http-client": "^1.0", diff --git a/src/Component/NestedToken/composer.json b/src/Component/NestedToken/composer.json index a24c7ef9..d859ac14 100644 --- a/src/Component/NestedToken/composer.json +++ b/src/Component/NestedToken/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-encryption": "^3.0", "web-token/jwt-signature": "^3.0" } diff --git a/src/Component/Signature/composer.json b/src/Component/Signature/composer.json index 634621e3..d027fe90 100644 --- a/src/Component/Signature/composer.json +++ b/src/Component/Signature/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-core": "^3.0" }, "suggest": { diff --git a/src/Ecc/composer.json b/src/Ecc/composer.json index 51186ca9..009d42d9 100644 --- a/src/Ecc/composer.json +++ b/src/Ecc/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "brick/math": "^0.9" }, "suggest": { diff --git a/src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json b/src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json index 45c1039f..86d2497f 100644 --- a/src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json +++ b/src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "web-token/jwt-encryption": "^3.0" } diff --git a/src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json b/src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json index 8efcef6e..610d5c13 100644 --- a/src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json +++ b/src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "web-token/jwt-encryption": "^3.0" } diff --git a/src/EncryptionAlgorithm/Experimental/composer.json b/src/EncryptionAlgorithm/Experimental/composer.json index 7c86fb69..20ada747 100644 --- a/src/EncryptionAlgorithm/Experimental/composer.json +++ b/src/EncryptionAlgorithm/Experimental/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "web-token/jwt-encryption-algorithm-rsa": "^3.0" } diff --git a/src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json b/src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json index f9d2cf25..258d0ac5 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "spomky-labs/aes-key-wrap": "^7.0", "web-token/jwt-encryption": "^3.0" diff --git a/src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json b/src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json index 3f804e74..b0e05326 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "spomky-labs/aes-key-wrap": "^7.0", "web-token/jwt-encryption": "^3.0" diff --git a/src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json b/src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json index 0a83abff..0f1bd6db 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-encryption": "^3.0" } } diff --git a/src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json b/src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json index 971d60df..4be0e4c7 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json @@ -23,6 +23,7 @@ "ext-sodium": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys" }, "require": { + "php": ">=8.1", "ext-openssl": "*", "spomky-labs/aes-key-wrap": "^7.0", "web-token/jwt-encryption": "^3.0", diff --git a/src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json b/src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json index 2ce4ff22..90048f26 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-encryption": "^3.0" } } diff --git a/src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json b/src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json index fe4d15b9..4db6f051 100644 --- a/src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json +++ b/src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "brick/math": "^0.9", "ext-openssl": "*", "symfony/polyfill-mbstring": "^1.12", diff --git a/src/SignatureAlgorithm/ECDSA/composer.json b/src/SignatureAlgorithm/ECDSA/composer.json index 7e4dfac9..753e9354 100644 --- a/src/SignatureAlgorithm/ECDSA/composer.json +++ b/src/SignatureAlgorithm/ECDSA/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-openssl": "*", "web-token/jwt-signature": "^3.0" } diff --git a/src/SignatureAlgorithm/EdDSA/composer.json b/src/SignatureAlgorithm/EdDSA/composer.json index 299c4983..f464d3dc 100644 --- a/src/SignatureAlgorithm/EdDSA/composer.json +++ b/src/SignatureAlgorithm/EdDSA/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "ext-sodium": "*", "web-token/jwt-signature": "^3.0" } diff --git a/src/SignatureAlgorithm/Experimental/composer.json b/src/SignatureAlgorithm/Experimental/composer.json index 14118546..79c352ab 100644 --- a/src/SignatureAlgorithm/Experimental/composer.json +++ b/src/SignatureAlgorithm/Experimental/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-signature-algorithm-rsa": "^3.0", "web-token/jwt-signature-algorithm-hmac": "^3.0" } diff --git a/src/SignatureAlgorithm/HMAC/composer.json b/src/SignatureAlgorithm/HMAC/composer.json index 025a96c0..7ec00c2a 100644 --- a/src/SignatureAlgorithm/HMAC/composer.json +++ b/src/SignatureAlgorithm/HMAC/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-signature": "^3.0" } } diff --git a/src/SignatureAlgorithm/None/composer.json b/src/SignatureAlgorithm/None/composer.json index ef7226c4..2515e679 100644 --- a/src/SignatureAlgorithm/None/composer.json +++ b/src/SignatureAlgorithm/None/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "web-token/jwt-signature": "^3.0" } } diff --git a/src/SignatureAlgorithm/RSA/composer.json b/src/SignatureAlgorithm/RSA/composer.json index f2fce0c8..69e70acb 100644 --- a/src/SignatureAlgorithm/RSA/composer.json +++ b/src/SignatureAlgorithm/RSA/composer.json @@ -20,6 +20,7 @@ } }, "require": { + "php": ">=8.1", "brick/math": "^0.9", "ext-openssl": "*", "web-token/jwt-signature": "^3.0"