Skip to content

Commit fcba0cb

Browse files
author
roadiz-ci
committed
chore: bumped
1 parent f586018 commit fcba0cb

5 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/run-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
php-version: ['8.3', '8.4']
22+
php-version: ['8.2', '8.3']
2323
steps:
2424
- uses: shivammathur/setup-php@v2
2525
with:

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2025 Ambroise Maupate
3+
Copyright © 2024 Ambroise Maupate
44

55
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:
66

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=8.3",
15+
"php": ">=8.2",
1616
"lcobucci/jwt": "^5.3",
17-
"symfony/http-client": "7.3.*"
17+
"symfony/http-client": "6.4.*"
1818
},
1919
"require-dev": {
2020
"phpstan/phpstan": "^1.5.3",
@@ -27,8 +27,8 @@
2727
},
2828
"extra": {
2929
"branch-alias": {
30-
"dev-main": "2.6.x-dev",
31-
"dev-develop": "2.7.x-dev"
30+
"dev-main": "2.5.x-dev",
31+
"dev-develop": "2.6.x-dev"
3232
}
3333
}
3434
}

src/Validation/Constraint/HostedDomain.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public function __construct(private string $hostedDomain)
1515
{
1616
}
1717

18-
#[\Override]
1918
public function assert(Token $token): void
2019
{
2120
if (!$token instanceof Plain || empty($this->hostedDomain)) {

src/Validation/Constraint/UserInfoEndpoint.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public function __construct(
1818
) {
1919
}
2020

21-
#[\Override]
2221
public function assert(Token $token): void
2322
{
2423
try {
@@ -29,7 +28,7 @@ public function assert(Token $token): void
2928
]);
3029
// Trigger lazy request
3130
$response->getContent();
32-
} catch (ExceptionInterface) {
31+
} catch (ExceptionInterface $e) {
3332
throw new ConstraintViolation('Userinfo cannot be fetch from Identity provider');
3433
}
3534
}

0 commit comments

Comments
 (0)