This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/s3/config.php

13 lines
308 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
abstract class S3Config
{
public const ACCESS_KEY_ID = 's3_access_key_id';
public const ACCESS_KEY_SECRET = 's3_access_key_secret';
public const ENDPOINT = 's3_endpoint';
public const IMAGE_BUCKET = 's3_image_bucket';
}