Skip to content

Commit

Permalink
adding missing dependency AWS SDK and updated installed-packages.json
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Jun 12, 2024
1 parent 03f3b5e commit b8943b3
Show file tree
Hide file tree
Showing 4 changed files with 223 additions and 14 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"fillup/fake-bower-assets": "^2.0",
"google/recaptcha": "^1.1",
"psr/log": "^1.0",
"monolog/monolog": "^1.22"
"monolog/monolog": "^1.22",
"aws/aws-sdk-php": "^3.313"
},
"require-dev": {
"behat/behat": "^3.8",
Expand Down
217 changes: 216 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 3 additions & 11 deletions installed-packages.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[
{
"name": "aws/aws-crt-php",
"version": "v1.2.2"
"version": "v1.2.5"
},
{
"name": "aws/aws-sdk-php",
"version": "3.269.0"
"version": "3.313.0"
},
{
"name": "cebe/markdown",
Expand Down Expand Up @@ -69,7 +69,7 @@
},
{
"name": "mtdowling/jmespath.php",
"version": "2.6.1"
"version": "2.7.0"
},
{
"name": "paragonie/random_compat",
Expand Down Expand Up @@ -139,14 +139,6 @@
"name": "silinternational/psr3-adapters",
"version": "3.1.0"
},
{
"name": "silinternational/simplesamlphp-module-material",
"version": "8.1.1"
},
{
"name": "silinternational/simplesamlphp-module-sildisco",
"version": "4.0.0"
},
{
"name": "silinternational/ssp-utilities",
"version": "1.1.0"
Expand Down
3 changes: 2 additions & 1 deletion modules/sildisco/lib/Auth/Process/LogUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace SimpleSAML\Module\sildisco\Auth\Process;

use Aws\DynamoDb\Marshaler;
use Aws\Sdk;

/**
* This Auth Proc logs information about each successful login to an AWS Dynamodb table.
Expand Down Expand Up @@ -104,7 +105,7 @@ public function process(&$state): void
$sdkConfig['endpoint'] = $this->dynamoEndpoint;
}

$sdk = new \Aws\Sdk($sdkConfig);
$sdk = new Sdk($sdkConfig);

$dynamodb = $sdk->createDynamoDb();
$marshaler = new Marshaler();
Expand Down

0 comments on commit b8943b3

Please sign in to comment.