Skip to content

Commit 792c388

Browse files
authored
Compatibility with SimpleSAMLphp 2.5 (#14)
* Bump dependencies Ensure compatibility with SimpleSAMLphp 2.5 * Add typehint
1 parent b036403 commit 792c388

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
}
2626
},
2727
"require": {
28-
"php": "^8.1",
29-
"simplesamlphp/assert": "^0.8.0 || ^1.0.0",
30-
"ext-pdo": "^8.1"
28+
"php": "^8.3",
29+
"simplesamlphp/assert": "^2.0.0",
30+
"ext-pdo": "*"
3131
},
3232
"require-dev": {
33-
"simplesamlphp/simplesamlphp": ">=2.0.0 <2.6.0",
34-
"simplesamlphp/simplesamlphp-test-framework": "^1.9.2"
33+
"simplesamlphp/simplesamlphp": ">=2.5.0 <2.6.0",
34+
"simplesamlphp/simplesamlphp-test-framework": "^1.11.2"
3535
},
3636
"suggest": {
3737
"ext-mysql": "Needed if a MySQL backend is used",

src/Auth/Process/AttributeFromSQL.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class AttributeFromSQL extends Auth\ProcessingFilter
4949
private bool $ignoreExpiry;
5050

5151
/** @var string Character used to quote SQL identifiers. Default to " per SQL:1999 */
52-
private $sqlIdentifierQuoteChar = '"';
52+
private string $sqlIdentifierQuoteChar = '"';
5353

5454

5555
/**

0 commit comments

Comments
 (0)