diff --git a/src/AwsS3V3/AwsS3V3AdapterTest.php b/src/AwsS3V3/AwsS3V3AdapterTest.php index 8d098aa5a..04daa6683 100644 --- a/src/AwsS3V3/AwsS3V3AdapterTest.php +++ b/src/AwsS3V3/AwsS3V3AdapterTest.php @@ -79,6 +79,15 @@ protected function tearDown(): void self::$adapter = null; } + protected function setUp(): void + { + if (PHP_VERSION_ID < 801000) { + $this->markTestSkipped('AWS does not support this anymore.'); + } + + parent::setUp(); + } + private static function s3Client(): S3ClientInterface { if (static::$s3Client instanceof S3ClientInterface) {