Skip to content

Commit

Permalink
Merge branch 'develop' into 1.17.x
Browse files Browse the repository at this point in the history
  • Loading branch information
JediKev committed Nov 9, 2022
2 parents adfef05 + ac2576a commit 2271e01
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion auth-oauth2/oauth2.php
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,6 @@ class MicrosoftEmailOauth2Provider extends GenericEmailOauth2Provider {
static $urlOptions = [
'tenant' => 'common',
'accessType' => 'offline_access',
'prompt' => 'consent',
];
}
?>
9 changes: 7 additions & 2 deletions storage-s3/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"aws/aws-sdk-php" => array(
'version' => "3.*",
'map' => array(
'aws/aws-sdk-php/src/{Api*,Arn*,ClientSideMonitoring*,Credentials*,DefaultsMode*,Endpoint*,Exception*,Handler*,Retry*,S3*,Signature*,*.php}' => 'lib/Aws',
'aws/aws-sdk-php/src/data' => 'lib/Aws',
'aws/aws-sdk-php/src' => 'lib/Aws',
'guzzlehttp/guzzle/src' => 'lib/GuzzleHttp',
'guzzlehttp/promises/src' => 'lib/GuzzleHttp/Promise',
'guzzlehttp/psr7/src/' => 'lib/GuzzleHttp/Psr7',
Expand All @@ -24,6 +23,12 @@
),
),
),
'scripts' => array(
'pre-autoload-dump' => 'Aws\\Script\\Composer\\Composer::removeUnusedServices',
),
'extra' => array(
'aws/aws-sdk-php' => 'S3',
),
'plugin' => 'storage.php:S3StoragePlugin'
);

Expand Down

0 comments on commit 2271e01

Please sign in to comment.