Skip to content

Commit d1136b7

Browse files
committed
Explicit php version for all components
1 parent 1d6f6a9 commit d1136b7

File tree

23 files changed

+23
-0
lines changed

23 files changed

+23
-0
lines changed

src/Bundle/JoseFramework/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"psr/event-dispatcher": "^1.0",
2425
"symfony/config": "^5.4|^6.0",
2526
"symfony/dependency-injection": "^5.4|^6.0",

src/Component/Checker/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-core": "^3.0"
2425
}
2526
}

src/Component/Console/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"symfony/console": "^5.4|^6.0",
2425
"web-token/jwt-key-mgmt": "^3.0"
2526
}

src/Component/Encryption/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-core": "^3.0"
2425
},
2526
"suggest": {

src/Component/KeyManagement/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"psr/http-factory": "^1.0",
2526
"psr/http-client": "^1.0",

src/Component/NestedToken/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-encryption": "^3.0",
2425
"web-token/jwt-signature": "^3.0"
2526
}

src/Component/Signature/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-core": "^3.0"
2425
},
2526
"suggest": {

src/Ecc/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"brick/math": "^0.9"
2425
},
2526
"suggest": {

src/EncryptionAlgorithm/ContentEncryption/AESCBC/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"web-token/jwt-encryption": "^3.0"
2526
}

src/EncryptionAlgorithm/ContentEncryption/AESGCM/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"web-token/jwt-encryption": "^3.0"
2526
}

src/EncryptionAlgorithm/Experimental/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"web-token/jwt-encryption-algorithm-rsa": "^3.0"
2526
}

src/EncryptionAlgorithm/KeyEncryption/AESGCMKW/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"spomky-labs/aes-key-wrap": "^7.0",
2526
"web-token/jwt-encryption": "^3.0"

src/EncryptionAlgorithm/KeyEncryption/AESKW/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"spomky-labs/aes-key-wrap": "^7.0",
2526
"web-token/jwt-encryption": "^3.0"

src/EncryptionAlgorithm/KeyEncryption/Direct/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-encryption": "^3.0"
2425
}
2526
}

src/EncryptionAlgorithm/KeyEncryption/ECDHES/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"ext-sodium": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys"
2424
},
2525
"require": {
26+
"php": ">=8.1",
2627
"ext-openssl": "*",
2728
"spomky-labs/aes-key-wrap": "^7.0",
2829
"web-token/jwt-encryption": "^3.0",

src/EncryptionAlgorithm/KeyEncryption/PBES2/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-encryption": "^3.0"
2425
}
2526
}

src/EncryptionAlgorithm/KeyEncryption/RSA/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"brick/math": "^0.9",
2425
"ext-openssl": "*",
2526
"symfony/polyfill-mbstring": "^1.12",

src/SignatureAlgorithm/ECDSA/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-openssl": "*",
2425
"web-token/jwt-signature": "^3.0"
2526
}

src/SignatureAlgorithm/EdDSA/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"ext-sodium": "*",
2425
"web-token/jwt-signature": "^3.0"
2526
}

src/SignatureAlgorithm/Experimental/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-signature-algorithm-rsa": "^3.0",
2425
"web-token/jwt-signature-algorithm-hmac": "^3.0"
2526
}

src/SignatureAlgorithm/HMAC/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-signature": "^3.0"
2425
}
2526
}

src/SignatureAlgorithm/None/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"web-token/jwt-signature": "^3.0"
2425
}
2526
}

src/SignatureAlgorithm/RSA/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
}
2121
},
2222
"require": {
23+
"php": ">=8.1",
2324
"brick/math": "^0.9",
2425
"ext-openssl": "*",
2526
"web-token/jwt-signature": "^3.0"

0 commit comments

Comments
 (0)