-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.17 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "daniel-km/omeka-s-module-amazon-s3",
"type": "omeka-s-module",
"description": "Module for Omeka S: Files store that integrates with Amazon S3.",
"keywords": [
"Omeka S",
"Omeka S module",
"amazon s3",
"storage",
"file system"
],
"license": "CECILL-2.1",
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-AmazonS3",
"authors": [
{
"name": "Daniel Berthereau",
"email": "Daniel.packagist@Berthereau.net"
}
],
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-AmazonS3/-/issues",
"forum": "https://forum.omeka.org/"
},
"_require (not set until Omeka S merges PR #2432)": {
"omeka/omeka-s": "^3.0 || ^4.0"
},
"require": {
"aws/aws-sdk-php": "^3.257"
},
"autoload": {
"psr-4": {
"AmazonS3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AmazonS3Test\\": "tests/AmazonS3Test/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"extra": {
"installer-name": "AmazonS3"
}
}