-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 775 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "arraypress/s3-signer",
"description": "A robust, lightweight library to generate presigned URLs for various S3-compatible storage providers, including Cloudflare R2, Linode, Amazon, and more.",
"homepage": "https://github.com/arraypress/s3-signer/",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "David Sherlock",
"homepage": "https://arraypress.com/"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"arraypress/s3-utilities": "*"
},
"autoload": {
"psr-4": {
"ArrayPress\\S3\\Signer\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}