-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.11 KB
/
composer.json
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
49
50
51
{
"name": "nextmotion/google-cloud-storage-fal",
"description": "Google Cloud Storage FAL driver for TYPO3",
"homepage": "http://github.com/nextmotion/google-cloud-storage-fal",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/nextmotion/google-cloud-storage-fal/issues"
},
"keywords": [
"TYPO3",
"FAL",
"Driver",
"FileAbstractionLayer",
"Google Cloud Storage",
"Google Cloud Platform",
"GCP",
"GCS",
"Bucket"
],
"authors": [
{
"name": "Pierre Geyer",
"email": "pg@next-motion.de",
"role": "Developer",
"homepage": "https://www.next-motion.de"
}
],
"type": "typo3-cms-extension",
"require": {
"php": ">=8.1 <8.3",
"typo3/cms-core": ">=12.0 <12.9.99",
"google/cloud-storage": ">=v1.30 <1.31"
},
"autoload": {
"psr-4": {
"Nextmotion\\GoogleCloudStorageDriver\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "google_cloud_storage_fal"
}
},
"scripts": {
"prepare-release": [
"rm .gitignore",
"rm -rf .git",
"rm -rf .github"
]
}
}