Skip to content

Commit

Permalink
Fix openssl requirements for existing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Feb 1, 2024
1 parent 7ac6d95 commit d963e42
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-sodium": "*",
"brick/math": "^0.9|^0.10|^0.11|^0.12",
"paragonie/constant_time_encoding": "^2.6",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"spomky-labs/aes-key-wrap": "^7.0",
"spomky-labs/pki-framework": "^1.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
Expand Down Expand Up @@ -86,7 +88,6 @@
"qossmic/deptrac-shim": "^1.0",
"rector/rector": "^0.19",
"roave/security-advisories": "dev-latest",
"spomky-labs/aes-key-wrap": "^7.0",
"symfony/browser-kit": "^6.1|^7.0",
"symfony/finder": "^6.1|^7.0",
"symfony/framework-bundle": "^6.1|^7.0",
Expand Down Expand Up @@ -128,7 +129,6 @@
"web-token/jwt-experimental": "self.version"
},
"suggest": {
"ext-sodium": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys",
"bjeavons/zxcvbn-php": "Adds key quality check for oct keys.",
"php-http/httplug": "To enable JKU/X5U support.",
"php-http/httplug-bundle": "To enable JKU/X5U support.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-openssl": "*",
"web-token/jwt-library": "^3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-openssl": "*",
"web-token/jwt-library": "^3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
}
],
"require": {
"ext-openssl": "*",
"spomky-labs/aes-key-wrap": "^7.0",
"web-token/jwt-library": "^3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
}
],
"require": {
"ext-openssl": "*",
"spomky-labs/aes-key-wrap": "^7.0",
"web-token/jwt-library": "^3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
}
],
"require": {
"ext-openssl": "*",
"spomky-labs/aes-key-wrap": "^7.0",
"web-token/jwt-library": "^3.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-openssl": "*",
"web-token/jwt-library": "^3.3"
}
}
1 change: 1 addition & 0 deletions src/Deprecated/KeyManagement/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-openssl": "*",
"web-token/jwt-library": "^3.3"
}
}
1 change: 1 addition & 0 deletions src/Deprecated/SignatureAlgorithm/ECDSA/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-openssl": "*",
"web-token/jwt-library": "^3.3"
}
}
1 change: 1 addition & 0 deletions src/Deprecated/SignatureAlgorithm/EdDSA/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
}
],
"require": {
"ext-sodium": "*",
"web-token/jwt-library": "^3.3"
}
}

0 comments on commit d963e42

Please sign in to comment.